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

public static class DataRoutingService.NotReadyException extends IOException
Exception used to indicate that a dynamic endpoint is not ready.
See Also:
  • Constructor Details

    • NotReadyException

      public NotReadyException()
      Constructs a new exception with null as its detail message.
    • NotReadyException

      public NotReadyException(String message)
      Constructs an Exception with the specified detail message.
      Parameters:
      message - the detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method.
    • NotReadyException

      public NotReadyException(String message, Throwable cause)
      Constructs an Exception with the specified detail message and cause.
      Parameters:
      message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method).
      cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
    • NotReadyException

      public NotReadyException(Throwable cause)
      Constructs an Exception with the specified cause.
      Parameters:
      cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)