| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception org.ow2.easybeans.rpc.api.RPCException
RPCException | public class RPCException extends Exception (Code) | | Exception thrown if there is a failure in the response done by the remote
side.
author: Florent Benoit |
Constructor Summary | |
public | RPCException() Constructs a new runtime exception with null as its detail
message. | public | RPCException(String message) Constructs a new runtime exception with the specified detail message. | public | RPCException(String message, Throwable cause) Constructs a new runtime exception with the specified detail message and
cause.
Note that the detail message associated with cause is
not automatically incorporated in this runtime exception's detail
message.
Parameters: message - the detail message (which is saved for later retrieval bythe RPCException.getMessage() method). Parameters: cause - the cause (which is saved for later retrieval by theRPCException.getCause() method). | public | RPCException(Throwable cause) Constructs a new exception with the specified cause and a detail message
of (cause==null ? null : cause.toString()) (which typically
contains the class and detail message of cause). |
RPCException | public RPCException()(Code) | | Constructs a new runtime exception with null as its detail
message. The cause is not initialized, and may subsequently be
initialized by a call to
RPCException.initCause .
|
RPCException | public RPCException(String message)(Code) | | Constructs a new runtime exception with the specified detail message. The
cause is not initialized, and may subsequently be initialized by a call
to
RPCException.initCause .
Parameters: message - the detail message. The detail message is saved for laterretrieval by the RPCException.getMessage() method. |
RPCException | public RPCException(String message, Throwable cause)(Code) | | Constructs a new runtime exception with the specified detail message and
cause.
Note that the detail message associated with cause is
not automatically incorporated in this runtime exception's detail
message.
Parameters: message - the detail message (which is saved for later retrieval bythe RPCException.getMessage() method). Parameters: cause - the cause (which is saved for later retrieval by theRPCException.getCause() method). (A null value ispermitted, and indicates that the cause is nonexistent orunknown.) |
RPCException | public RPCException(Throwable cause)(Code) | | Constructs a new exception 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,
java.security.PrivilegedActionException ).
Parameters: cause - the cause (which is saved for later retrieval by theRPCException.getCause() method). (A null value ispermitted, and indicates that the cause is nonexistent orunknown.) since: 1.4 |
isApplicationException | public boolean isApplicationException()(Code) | | true if the wrapped exception is an application exception |
setApplicationException | public void setApplicationException()(Code) | | Mark this exception as an application exception (wrapped exception).
|
|
|
|