Class UnsupportedCredentialTypeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.security.GeneralSecurityException
org.wildfly.security.credential.store.CredentialStoreException
org.wildfly.security.credential.store.UnsupportedCredentialTypeException
- All Implemented Interfaces:
Serializable
An exception indicating that given credential store is not supporting particular
Credential class.- Author:
- Peter Skopek.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newUnsupportedCredentialTypeExceptioninstance.Constructs a newUnsupportedCredentialTypeExceptioninstance with an initial message.UnsupportedCredentialTypeException(String message, Throwable cause) Constructs a newUnsupportedCredentialTypeExceptioninstance with an initial message and cause.Constructs a newUnsupportedCredentialTypeExceptioninstance with an initial 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
-
UnsupportedCredentialTypeException
public UnsupportedCredentialTypeException()Constructs a newUnsupportedCredentialTypeExceptioninstance. The message is left blank (null), and no cause is specified. -
UnsupportedCredentialTypeException
Constructs a newUnsupportedCredentialTypeExceptioninstance with an initial message. No cause is specified.- Parameters:
msg- the message
-
UnsupportedCredentialTypeException
Constructs a newUnsupportedCredentialTypeExceptioninstance with an initial message and cause.- Parameters:
message- the messagecause- the cause
-
UnsupportedCredentialTypeException
Constructs a newUnsupportedCredentialTypeExceptioninstance with an initial cause. If a non-nullcause is specified, its message is used to initialize the message of thisException; otherwise the message is left blank (null).- Parameters:
cause- the cause
-