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 Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description InvalidAuthenticationConfigurationException()
Constructs a newInvalidAuthenticationConfigurationException
instance.InvalidAuthenticationConfigurationException(String msg)
Constructs a newInvalidAuthenticationConfigurationException
instance with an initial message.InvalidAuthenticationConfigurationException(String msg, Throwable cause)
Constructs a newInvalidAuthenticationConfigurationException
instance with an initial message and cause.InvalidAuthenticationConfigurationException(Throwable cause)
Constructs a newInvalidAuthenticationConfigurationException
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
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
InvalidAuthenticationConfigurationException
public InvalidAuthenticationConfigurationException()
Constructs a newInvalidAuthenticationConfigurationException
instance. The message is left blank (null
), and no cause is specified.
-
InvalidAuthenticationConfigurationException
public InvalidAuthenticationConfigurationException(String msg)
Constructs a newInvalidAuthenticationConfigurationException
instance with an initial message. No cause is specified.- Parameters:
msg
- the message
-
InvalidAuthenticationConfigurationException
public InvalidAuthenticationConfigurationException(Throwable cause)
Constructs a newInvalidAuthenticationConfigurationException
instance with an initial cause. If a non-null
cause is specified, its message is used to initialize the message of thisInvalidAuthenticationConfigurationException
; otherwise the message is left blank (null
).- Parameters:
cause
- the cause
-
-