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:
java.io.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(java.lang.String msg)
ConnectionBrokenException(java.lang.String message, java.lang.Throwable ex)
ConnectionBrokenException(java.lang.Throwable ex)
-
Method Summary
-
Methods inherited from class org.identityconnectors.framework.common.exceptions.ConnectorException
rethrow, wrap
-
-
-
-
Constructor Detail
-
ConnectionBrokenException
public ConnectionBrokenException()
- See Also:
ConnectorException()
-
ConnectionBrokenException
public ConnectionBrokenException(java.lang.String msg)
- See Also:
ConnectorException(String)
-
ConnectionBrokenException
public ConnectionBrokenException(java.lang.Throwable ex)
- See Also:
ConnectorException(Throwable)
-
ConnectionBrokenException
public ConnectionBrokenException(java.lang.String message, java.lang.Throwable ex)
- See Also:
ConnectorException(String, Throwable)
-
-