Module one.jpro.platform.auth.core
Class CredentialValidationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
one.jpro.platform.auth.core.authentication.CredentialValidationException
- All Implemented Interfaces:
Serializable
Represents an exception that is thrown when
Credentials validation fails.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCredentialValidationException(String message) Constructs a new CredentialValidationException with the specified detail message.CredentialValidationException(String message, Throwable cause) Constructs a new CredentialValidationException with 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
-
CredentialValidationException
Constructs a new CredentialValidationException with the specified detail message.- Parameters:
message- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()method.
-
CredentialValidationException
Constructs a new CredentialValidationException with the specified detail message and cause.- Parameters:
message- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()method.cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-