| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.openharmonise.rm.HarmoniseRuntimeException
All known Subclasses: org.openharmonise.rm.config.ConfigRuntimeException,
HarmoniseRuntimeException | abstract public class HarmoniseRuntimeException extends RuntimeException (Code) | | Abstract runtime exception class to be extended for specific
runtime exceptions thrown within Harmonise.
Note: Runtime exception are to be used only in rare cases where the error is caused by
some programming error or some critical fault in the configuration of Harmonise.
author: Michael Bell version: $Revision: 1.1 $ |
HarmoniseRuntimeException | public HarmoniseRuntimeException()(Code) | | Constructs an exception with no detail message and no cause.
|
HarmoniseRuntimeException | public HarmoniseRuntimeException(String s)(Code) | | Constructs an exception with the specified detail message and no
cause.
Parameters: s - the detail message |
HarmoniseRuntimeException | public HarmoniseRuntimeException(String s, Throwable e)(Code) | | Constructs an exception with the specified detail message and
cause.
Parameters: s - the detail message Parameters: e - the cause |
HarmoniseRuntimeException | public HarmoniseRuntimeException(Throwable cause)(Code) | | Constructs a new exception with the specified cause and a
detail message taken from the cause.
Parameters: cause - the cause |
|
|
|