Package com.microsoft.azure.relay
Class EndpointNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.microsoft.azure.relay.RelayException
com.microsoft.azure.relay.EndpointNotFoundException
- All Implemented Interfaces:
Serializable
- See Also:
-
Constructor Summary
ConstructorsModifierConstructorDescriptionCreates a new instance of the EndpointNotFoundException class.EndpointNotFoundException(String message) Creates a new instance of the EndpointNotFoundException class with a specified error message.EndpointNotFoundException(String message, Exception innerException) Creates a new instance of the EndpointNotFoundException class with a specified error message and a reference to the inner exception that is the cause of this exception.protectedEndpointNotFoundException(String message, Exception innerException, boolean isTransient) Creates a new instance of the EndpointNotFoundException 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
-
EndpointNotFoundException
public EndpointNotFoundException()Creates a new instance of the EndpointNotFoundException class. -
EndpointNotFoundException
Creates a new instance of the EndpointNotFoundException class with a specified error message.- Parameters:
message- The message that describes the error.
-
EndpointNotFoundException
Creates a new instance of the EndpointNotFoundException 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.
-
EndpointNotFoundException
Creates a new instance of the EndpointNotFoundException 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.isTransient- Whether this exception is transient and should be retried.
-