| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException
RuntimeException | public class RuntimeException extends Exception (Code) | | This class is the superclass of all classes which represent exceptional
conditions which occur as a result of the running of the virtual machine.
|
Constructor Summary | |
public | RuntimeException() Constructs a new instance of this class with its walkback filled in. | public | RuntimeException(String detailMessage) Constructs a new instance of this class with its walkback and message
filled in. | public | RuntimeException(String detailMessage, Throwable throwable) Constructs a new instance of this class with its walkback, message and
cause filled in. | public | RuntimeException(Throwable throwable) Constructs a new instance of this class with its walkback and cause
filled in. |
RuntimeException | public RuntimeException()(Code) | | Constructs a new instance of this class with its walkback filled in.
|
RuntimeException | public RuntimeException(String detailMessage)(Code) | | Constructs a new instance of this class with its walkback and message
filled in.
Parameters: detailMessage - String The detail message for the exception. |
RuntimeException | public RuntimeException(String detailMessage, Throwable throwable)(Code) | | Constructs a new instance of this class with its walkback, message and
cause filled in.
Parameters: detailMessage - String The detail message for the exception. Parameters: throwable - The cause of this Throwable |
RuntimeException | public RuntimeException(Throwable throwable)(Code) | | Constructs a new instance of this class with its walkback and cause
filled in.
Parameters: throwable - The cause of this Throwable |
|
|
|