Package i5.las2peer.connectors
Class ConnectorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
i5.las2peer.connectors.ConnectorException
- All Implemented Interfaces:
Serializable
Basic exception for connectors.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConnectorException(String message) create a new exceptionConnectorException(String message, Throwable cause) create a new exception -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ConnectorException
create a new exception- Parameters:
message- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()method.
-
ConnectorException
create a new exception- Parameters:
message- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()method.cause- cause the cause (which is saved for later retrieval by theThrowable.getCause()method). (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
-