Module org.neo4j.driver
Package org.neo4j.driver.exceptions
Class AuthTokenManagerExecutionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.neo4j.driver.exceptions.Neo4jException
org.neo4j.driver.exceptions.ClientException
org.neo4j.driver.exceptions.AuthTokenManagerExecutionException
- All Implemented Interfaces:
Serializable
The
AuthTokenManager
execution has lead to an unexpected result.
Possible causes include:
AuthTokenManager.getToken()
returnednull
AuthTokenManager.getToken()
returned aCompletionStage
that completed withnull
AuthTokenManager.getToken()
returned aCompletionStage
that completed with a token that was not created usingAuthTokens
AuthTokenManager.getToken()
has thrown an exceptionAuthTokenManager.getToken()
returned aCompletionStage
that completed exceptionally
- Since:
- 5.8
- See Also:
-
Constructor Summary
ConstructorDescriptionAuthTokenManagerExecutionException
(String message, Throwable cause) Constructs a new instance. -
Method Summary
Methods inherited from class org.neo4j.driver.exceptions.Neo4jException
code
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
AuthTokenManagerExecutionException
Constructs a new instance.- Parameters:
message
- the messagecause
- the cause
-