Class ConnectionFailedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.identityconnectors.framework.common.exceptions.ConnectorException
-
- org.identityconnectors.framework.common.exceptions.ConnectorIOException
-
- org.identityconnectors.framework.common.exceptions.ConnectionFailedException
-
- All Implemented Interfaces:
Serializable
public class ConnectionFailedException extends ConnectorIOException
ConnectionFailedException is thrown when a Connector cannot reach the target resource instance. An instance ofConnectionFailedException
generally wraps the native exception (or describes the native error) returned by the target resource.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConnectionFailedException()
ConnectionFailedException(String msg)
ConnectionFailedException(String message, Throwable ex)
ConnectionFailedException(Throwable ex)
-
Method Summary
-
Methods inherited from class org.identityconnectors.framework.common.exceptions.ConnectorException
rethrow, wrap
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ConnectionFailedException
public ConnectionFailedException()
- See Also:
ConnectorException()
-
ConnectionFailedException
public ConnectionFailedException(String msg)
- See Also:
ConnectorException(String)
-
ConnectionFailedException
public ConnectionFailedException(Throwable ex)
- See Also:
ConnectorException(Throwable)
-
ConnectionFailedException
public ConnectionFailedException(String message, Throwable ex)
- See Also:
ConnectorException(String, Throwable)
-
-