Package com.microsoft.azure.relay
Class ConnectionLostException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.microsoft.azure.relay.RelayException
com.microsoft.azure.relay.ConnectionLostException
- All Implemented Interfaces:
Serializable
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new instance of the ConnectionLostException class.ConnectionLostException(String message) Creates a new instance of the ConnectionLostException class with a specified error message.ConnectionLostException(String message, Exception innerException) Creates a new instance of the ConnectionLostException class with a specified error message and a reference to the inner exception that is the cause of this exception. -
Method Summary
Methods inherited from class com.microsoft.azure.relay.RelayException
isTransient, setTransientMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ConnectionLostException
public ConnectionLostException()Creates a new instance of the ConnectionLostException class. -
ConnectionLostException
Creates a new instance of the ConnectionLostException class with a specified error message.- Parameters:
message- The message that describes the error.
-
ConnectionLostException
Creates a new instance of the ConnectionLostException class with a specified error message and a reference to the inner exception that is the cause of this exception.- Parameters:
message- The message that describes the error.innerException- The exception that is the cause of the current exception.
-