Package com.illumon.iris.db.v2.routing
Class DataRoutingService.NotReadyException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
com.illumon.iris.db.v2.routing.DataRoutingService.NotReadyException
- All Implemented Interfaces:
Serializable
- Enclosing interface:
- DataRoutingService
Exception used to indicate that a dynamic endpoint is not ready.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new exception withnull
as its detail message.NotReadyException
(String message) Constructs an Exception with the specified detail message.NotReadyException
(String message, Throwable cause) Constructs an Exception with the specified detail message and cause.NotReadyException
(Throwable cause) Constructs an Exception with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NotReadyException
public NotReadyException()Constructs a new exception withnull
as its detail message. -
NotReadyException
Constructs an Exception with the specified detail message.- Parameters:
message
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.
-
NotReadyException
Constructs an Exception with the specified detail message and cause.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
NotReadyException
Constructs an Exception with the specified cause.- Parameters:
cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-