Package org.wildfly.security.auth.client
Class InvalidAuthenticationConfigurationException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- java.lang.RuntimeException
- 
- java.lang.IllegalArgumentException
- 
- org.wildfly.security.auth.client.InvalidAuthenticationConfigurationException
 
 
 
 
 
- 
- All Implemented Interfaces:
- Serializable
 
 public class InvalidAuthenticationConfigurationException extends IllegalArgumentException An exception thrown to indicate that the client authentication configuration is invalid. Examine the cause for more information about the problem.- Author:
- David M. Lloyd
- See Also:
- Serialized Form
 
- 
- 
Field SummaryFields Modifier and Type Field Description private static longserialVersionUID
 - 
Constructor SummaryConstructors Constructor Description InvalidAuthenticationConfigurationException()Constructs a newInvalidAuthenticationConfigurationExceptioninstance.InvalidAuthenticationConfigurationException(String msg)Constructs a newInvalidAuthenticationConfigurationExceptioninstance with an initial message.InvalidAuthenticationConfigurationException(String msg, Throwable cause)Constructs a newInvalidAuthenticationConfigurationExceptioninstance with an initial message and cause.InvalidAuthenticationConfigurationException(Throwable cause)Constructs a newInvalidAuthenticationConfigurationExceptioninstance with an initial cause.
 - 
Method Summary- 
Methods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
- 
 
- 
- 
- 
Field Detail- 
serialVersionUIDprivate static final long serialVersionUID - See Also:
- Constant Field Values
 
 
- 
 - 
Constructor Detail- 
InvalidAuthenticationConfigurationExceptionpublic InvalidAuthenticationConfigurationException() Constructs a newInvalidAuthenticationConfigurationExceptioninstance. The message is left blank (null), and no cause is specified.
 - 
InvalidAuthenticationConfigurationExceptionpublic InvalidAuthenticationConfigurationException(String msg) Constructs a newInvalidAuthenticationConfigurationExceptioninstance with an initial message. No cause is specified.- Parameters:
- msg- the message
 
 - 
InvalidAuthenticationConfigurationExceptionpublic InvalidAuthenticationConfigurationException(Throwable cause) Constructs a newInvalidAuthenticationConfigurationExceptioninstance with an initial cause. If a non-nullcause is specified, its message is used to initialize the message of thisInvalidAuthenticationConfigurationException; otherwise the message is left blank (null).- Parameters:
- cause- the cause
 
 
- 
 
-