Package com.zebra.sdk.comm
Class ConnectionException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
LogStreamException
Signals that an error has occurred on the connection.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConnectionException(String message) Constructs aConnectionExceptionwithmessageas the detailed error message.ConnectionException(String message, Throwable cause) Constructs aConnectionExceptionwith themessageas the detailed error message andcauseas the source of the exception.ConnectionException(Throwable cause) Constructs aConnectionExceptionwithcauseas the source of the 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
-
ConnectionException
Constructs aConnectionExceptionwithmessageas the detailed error message.- Parameters:
message- the error message.
-
ConnectionException
Constructs aConnectionExceptionwithcauseas the source of the exception.- Parameters:
cause- the cause of the exception
-
ConnectionException
Constructs aConnectionExceptionwith themessageas the detailed error message andcauseas the source of the exception.- Parameters:
message- the error message.cause- the cause of the exception
-