Package oracle.rsi

Class RSIException

  • All Implemented Interfaces:
    java.io.Serializable

    public class RSIException
    extends java.lang.RuntimeException
    Represents an error that occurred in the Reactive Streams Ingestion Library. Thrown when an error occurs within RSI.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      RSIException()
      Constructs a RSIException with null as its error detail message.
      RSIException​(java.lang.String message)
      Constructs a RSIException with the specified detail message.
      RSIException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a RSIException with the specified detail message and the cause.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • RSIException

        public RSIException()
        Constructs a RSIException with null as its error detail message.
      • RSIException

        public RSIException​(java.lang.String message,
                            java.lang.Throwable cause)
        Constructs a RSIException with the specified detail message and the cause. The string message can be retrieved later by the Throwable.getMessage() method of class java.lang.Throwable.
        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.)
      • RSIException

        public RSIException​(java.lang.String message)
        Constructs a RSIException with the specified detail message. The string message can be retrieved later by the Throwable.getMessage() method of class java.lang.Throwable.
        Parameters:
        message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method).