Package io.oxia.client.api.exceptions
Class UnsupportedAuthenticationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
io.oxia.client.api.exceptions.OxiaException
io.oxia.client.api.exceptions.UnsupportedAuthenticationException
- All Implemented Interfaces:
Serializable
Unsupported authentication exception thrown by Oxia client.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs anUnsupportedAuthenticationExceptionwith the specified detail message.UnsupportedAuthenticationException(String msg, Throwable cause) Constructs anUnsupportedAuthenticationExceptionwith the specified detail message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UnsupportedAuthenticationException
Constructs anUnsupportedAuthenticationExceptionwith the specified detail message.- Parameters:
msg- The detail message (which is saved for later retrieval by theThrowable.getMessage()method)
-
UnsupportedAuthenticationException
Constructs anUnsupportedAuthenticationExceptionwith the specified detail message and cause.- Parameters:
msg- The detail message (which is saved for later retrieval by theThrowable.getMessage()method)cause- The cause (which is saved for later retrieval by theThrowable.getCause()method). (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
-