Class ConnectionBrokenException
- 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.ConnectionBrokenException
-
- All Implemented Interfaces:
Serializable
public class ConnectionBrokenException extends ConnectorIOException
ConnectionBrokenException is thrown when a connection to a target resource instance fails during an operation. An instance ofConnectionBrokenException
generally wraps the native exception (or describes the native error) returned by the target resource.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConnectionBrokenException()
ConnectionBrokenException(String msg)
ConnectionBrokenException(String message, Throwable ex)
ConnectionBrokenException(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
-
ConnectionBrokenException
public ConnectionBrokenException()
- See Also:
ConnectorException()
-
ConnectionBrokenException
public ConnectionBrokenException(String msg)
- See Also:
ConnectorException(String)
-
ConnectionBrokenException
public ConnectionBrokenException(Throwable ex)
- See Also:
ConnectorException(Throwable)
-
ConnectionBrokenException
public ConnectionBrokenException(String message, Throwable ex)
- See Also:
ConnectorException(String, Throwable)
-
-