|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
net.pleso.framework.client.bl.exceptions.FrameworkRuntimeException
public class FrameworkRuntimeException
Represents base framework runtime exception. All framework exceptions extend this class. This helps outside unrecognized exception handler to recognize framework exceptions.
Constructor Summary | |
---|---|
FrameworkRuntimeException()
Constructs a new framework runtime exception with null as
its detail message. |
|
FrameworkRuntimeException(java.lang.String message)
Constructs a new framework runtime exception with the specified detail message and cause. |
|
FrameworkRuntimeException(java.lang.String message,
java.lang.Throwable cause)
Constructs a new framework runtime exception with the specified detail message. |
|
FrameworkRuntimeException(java.lang.Throwable cause)
Constructs a new runtime exception with the specified cause and a detail message of (cause==null ? |
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 |
---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public FrameworkRuntimeException()
null
as
its detail message.
public FrameworkRuntimeException(java.lang.String message, java.lang.Throwable cause)
message
- the detail messagecause
- the causepublic FrameworkRuntimeException(java.lang.String message)
message
- the detail messagepublic FrameworkRuntimeException(java.lang.Throwable cause)
(cause==null ? null : cause.toString())
(which
typically contains the class and detail message of cause).
cause
- the cause
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |