Class ConnectorIOException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.identityconnectors.framework.common.exceptions.ConnectorException
-
- org.identityconnectors.framework.common.exceptions.ConnectorIOException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ConnectionBrokenException
,ConnectionFailedException
public class ConnectorIOException extends ConnectorException
Base exception for all Input-Output (I/O-related) exceptions, including instance connection failure, socket error and so forth.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConnectorIOException()
ConnectorIOException(String msg)
ConnectorIOException(String message, Throwable ex)
ConnectorIOException(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
-
ConnectorIOException
public ConnectorIOException()
- See Also:
ConnectorException()
-
ConnectorIOException
public ConnectorIOException(String msg)
- See Also:
ConnectorException(String)
-
ConnectorIOException
public ConnectorIOException(Throwable ex)
- See Also:
ConnectorException(Throwable)
-
ConnectorIOException
public ConnectorIOException(String message, Throwable ex)
- See Also:
ConnectorException(String, Throwable)
-
-