|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.n52.oxf.OXFRuntimeException
public class OXFRuntimeException
OXFRuntimeException can be thrown during the normal operation of the Java Virtual Machine.
A method is not required to declare in its throws clause any subclasses of OXFRuntimeException that might
be thrown during the execution of the method but not caught.
Constructor Summary | |
---|---|
OXFRuntimeException()
Constructs a new OXFRuntimeException. |
|
OXFRuntimeException(String reason)
Constructs a new OXFRuntimeException with the specified reason. |
|
OXFRuntimeException(String reason,
Throwable cause)
Constructs a new OXFRuntimeException with the specified reason and cause. |
|
OXFRuntimeException(Throwable cause)
Constructs a new OXFRuntimeException with the specified cause. |
Method Summary |
---|
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 |
Constructor Detail |
---|
public OXFRuntimeException()
public OXFRuntimeException(String reason)
reason
- the reason of the exception.public OXFRuntimeException(Throwable cause)
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.public OXFRuntimeException(String reason, Throwable cause)
reason
- the reason of the exception.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.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |