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()returnednullAuthTokenManager.getToken()returned aCompletionStagethat completed withnullAuthTokenManager.getToken()returned aCompletionStagethat completed with a token that was not created usingAuthTokensAuthTokenManager.getToken()has thrown an exceptionAuthTokenManager.getToken()returned aCompletionStagethat completed exceptionally
- Since:
- 5.8
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionAuthTokenManagerExecutionException(String message, Throwable cause) Constructs a new instance. -
Method Summary
Methods inherited from class org.neo4j.driver.exceptions.Neo4jException
codeMethods 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
-