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
public class UnsupportedCredentialTypeException extends CredentialStoreException
An exception indicating that given credential store is not supporting particularCredential
class.- Author:
- Peter Skopek.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnsupportedCredentialTypeException()
Constructs a newUnsupportedCredentialTypeException
instance.UnsupportedCredentialTypeException(String msg)
Constructs a newUnsupportedCredentialTypeException
instance with an initial message.UnsupportedCredentialTypeException(String message, Throwable cause)
Constructs a newUnsupportedCredentialTypeException
instance with an initial message and cause.UnsupportedCredentialTypeException(Throwable cause)
Constructs a newUnsupportedCredentialTypeException
instance 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 Detail
-
UnsupportedCredentialTypeException
public UnsupportedCredentialTypeException()
Constructs a newUnsupportedCredentialTypeException
instance. The message is left blank (null
), and no cause is specified.
-
UnsupportedCredentialTypeException
public UnsupportedCredentialTypeException(String msg)
Constructs a newUnsupportedCredentialTypeException
instance with an initial message. No cause is specified.- Parameters:
msg
- the message
-
UnsupportedCredentialTypeException
public UnsupportedCredentialTypeException(String message, Throwable cause)
Constructs a newUnsupportedCredentialTypeException
instance with an initial message and cause.- Parameters:
message
- the messagecause
- the cause
-
UnsupportedCredentialTypeException
public UnsupportedCredentialTypeException(Throwable cause)
Constructs a newUnsupportedCredentialTypeException
instance with an initial cause. If a non-null
cause is specified, its message is used to initialize the message of thisException
; otherwise the message is left blank (null
).- Parameters:
cause
- the cause
-
-