Class InvalidCredentialException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.identityconnectors.framework.common.exceptions.ConnectorException
-
- org.identityconnectors.framework.common.exceptions.ConnectorSecurityException
-
- org.identityconnectors.framework.common.exceptions.InvalidCredentialException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
InvalidPasswordException
,UnknownUidException
public class InvalidCredentialException extends ConnectorSecurityException
InvalidCredentialException signals that user authentication failed.This exception is thrown by Connector if authentication failed. For example, a
Connector
throws this exception if the user entered an incorrect password.- See Also:
FailedLoginException
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidCredentialException()
InvalidCredentialException(java.lang.String message)
InvalidCredentialException(java.lang.String message, java.lang.Throwable ex)
InvalidCredentialException(java.lang.Throwable ex)
-
Method Summary
-
Methods inherited from class org.identityconnectors.framework.common.exceptions.ConnectorException
rethrow, wrap
-
-
-
-
Constructor Detail
-
InvalidCredentialException
public InvalidCredentialException()
- See Also:
ConnectorException()
-
InvalidCredentialException
public InvalidCredentialException(java.lang.String message)
- See Also:
ConnectorException(String)
-
InvalidCredentialException
public InvalidCredentialException(java.lang.Throwable ex)
- See Also:
ConnectorException(Throwable)
-
InvalidCredentialException
public InvalidCredentialException(java.lang.String message, java.lang.Throwable ex)
- See Also:
ConnectorException(String, Throwable)
-
-