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
 
 
- 
- 
Constructor Summary
Constructors 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.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
InvalidAuthenticationConfigurationException
public InvalidAuthenticationConfigurationException()
Constructs a newInvalidAuthenticationConfigurationExceptioninstance. The message is left blank (null), and no cause is specified. 
- 
InvalidAuthenticationConfigurationException
public InvalidAuthenticationConfigurationException(String msg)
Constructs a newInvalidAuthenticationConfigurationExceptioninstance with an initial message. No cause is specified.- Parameters:
 msg- the message
 
- 
InvalidAuthenticationConfigurationException
public 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
 
 - 
 
 -