| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception org.ow2.easybeans.component.joram.JoramException
JoramException | public class JoramException extends Exception (Code) | | Class used when there is an exception in joram service.
author: Florent Benoit |
Constructor Summary | |
public | JoramException() Constructs a new runtime exception with null as its detail
message. | public | JoramException(String message) Constructs a new runtime exception with the specified detail message. | public | JoramException(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 JoramException.getMessage() method). Parameters: cause - the cause (which is saved for later retrieval by theJoramException.getCause() method). |
JoramException | public JoramException()(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
JoramException.initCause .
|
JoramException | public JoramException(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
JoramException.initCause .
Parameters: message - the detail message. The detail message is saved for laterretrieval by the JoramException.getMessage() method. |
JoramException | public JoramException(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 JoramException.getMessage() method). Parameters: cause - the cause (which is saved for later retrieval by theJoramException.getCause() method). (A null value ispermitted, and indicates that the cause is nonexistent orunknown.) |
|
|
|