Skip navigation links
oracle.security.idaas.rp.client
Class RPClientException
java.lang.Object
java.lang.Throwable
java.lang.Exception
oracle.security.idaas.common.util.OICBaseException
oracle.security.idaas.rp.client.RPClientException
- All Implemented Interfaces:
- java.io.Serializable, oracle.security.idaas.common.util.OICException
-
public class RPClientException
- extends oracle.security.idaas.common.util.OICBaseException
This RPClientException is thrown when an internal occurs.
- Since:
- 11g Release 2 (11.1.2)
- Version:
- 11g Release 2 (11.1.2)
- See Also:
- Serialized Form
| Fields inherited from class oracle.security.idaas.common.util.OICBaseException |
errorCode |
| Constructor Summary |
RPClientException()
|
RPClientException(java.lang.String message)
Constructs a new RPClientException with the specified detail message. |
RPClientException(java.lang.String message, java.lang.Throwable cause)
Constructs a new RPClientException with the specified detail message and cause. |
RPClientException(java.lang.Throwable cause)
Constructs a new RPClientException with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause). |
| Methods inherited from class oracle.security.idaas.common.util.OICBaseException |
getErrorCode |
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface oracle.security.idaas.common.util.OICException |
getCause, getMessage |
RPClientException
public RPClientException()
RPClientException
public RPClientException(java.lang.String message)
- Constructs a new RPClientException with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to
Throwable.initCause(java.lang.Throwable).
- Parameters:
messageID - the detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method.
RPClientException
public RPClientException(java.lang.String message,
java.lang.Throwable cause)
- Constructs a new RPClientException with the specified detail message and cause.
Note that the detail message associated with cause is not automatically incorporated in this RPClientException's detail message.
- Parameters:
messageID - 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.)
RPClientException
public RPClientException(java.lang.Throwable cause)
- Constructs a new RPClientException with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause). This constructor is useful for exceptions that are little more than wrappers for other throwables (for example,
PrivilegedActionException).
- 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.)
Skip navigation links