jet.server.api.crd
Class CRDManageException
java.lang.Object
java.lang.Throwable
java.lang.Exception
jet.JException
jet.JSException
jet.server.api.crd.CRDManageException
- All Implemented Interfaces:
- java.io.Serializable
public class CRDManageException
- extends jet.JSException
The exception will be thrown while errors happen when managing CRD (cached report data)
- Since:
- version 10
- See Also:
- Serialized Form
| Nested classes/interfaces inherited from class jet.JException |
jet.JException.LogLevel |
|
Constructor Summary |
CRDManageException(java.lang.Exception e)
Constructs a new CRDManageException with specified
exception object. |
CRDManageException(int msgKey,
java.lang.Object[] params,
java.lang.Throwable cause)
Constructs a new throwable with the specified detailed message and cause. |
CRDManageException(java.lang.String msg)
Constructs a new CRDManageException with specified
message. |
| Methods inherited from class jet.JSException |
getErrorKey |
| Methods inherited from class jet.JException |
getMessages, getThrowables, logTrace |
| 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 |
CRDManageException
public CRDManageException(java.lang.String msg)
- Constructs a new
CRDManageException with specified
message.
- Parameters:
msg - the detail message.
CRDManageException
public CRDManageException(java.lang.Exception e)
- Constructs a new
CRDManageException with specified
exception object.
- Parameters:
e - the detailed exception object.
CRDManageException
public CRDManageException(int msgKey,
java.lang.Object[] params,
java.lang.Throwable cause)
- Constructs a new throwable with the specified detailed message and cause.
- Parameters:
msgKey - the message key in strJError, for finding the message, and which will
be logged and shown to user.params - the parameters used for formatting the message string, which can be
null.cause - the cause which is saved for later retrieval by the getCause.