Package oracle.rsi
Class RSIException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- oracle.rsi.RSIException
-
- All Implemented Interfaces:
java.io.Serializable
public class RSIException extends java.lang.RuntimeExceptionRepresents 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 aRSIExceptionwithnullas its error detail message.RSIException(java.lang.String message)Constructs aRSIExceptionwith the specified detail message.RSIException(java.lang.String message, java.lang.Throwable cause)Constructs aRSIExceptionwith the specified detail message and the cause.
-
-
-
Constructor Detail
-
RSIException
public RSIException()
Constructs aRSIExceptionwithnullas its error detail message.
-
RSIException
public RSIException(java.lang.String message, java.lang.Throwable cause)Constructs aRSIExceptionwith the specified detail message and the cause. The stringmessagecan be retrieved later by themethod of classThrowable.getMessage()java.lang.Throwable.- 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). (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
-
RSIException
public RSIException(java.lang.String message)
Constructs aRSIExceptionwith the specified detail message. The stringmessagecan be retrieved later by themethod of classThrowable.getMessage()java.lang.Throwable.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method).
-
-