public class StreamsException
extends java.lang.Exception
| Constructor and Description |
|---|
StreamsException(java.lang.String message)
Constructs a StreamsException object with message only.
|
StreamsException(java.lang.String message, int errorCode)
Constructs a StreamsException object with message and error code.
|
StreamsException(java.lang.String message, java.lang.Throwable cause)
Constructs a StreamsException object with message and cause.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getErrorCode()
Gets the Oracle-specific error code.
|
public StreamsException(java.lang.String message)
message - A string describing the error.public StreamsException(java.lang.String message,
int errorCode)
message - A string describing the error.errorCode - An integer error code.public StreamsException(java.lang.String message,
java.lang.Throwable cause)
message - A string describing the error.cause - The cause of this StreamsException.