jet.server.api
Class RptServerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
jet.server.api.RptServerException
- All Implemented Interfaces:
- java.io.Serializable
- public class RptServerException
- extends java.lang.Exception
Signals indicating that an exception occurs.
Typically,the exception would be thrown out if an excetion occurs in the report server.
- See Also:
- Serialized Form
|
Constructor Summary |
RptServerException(java.lang.String msg)
Construct a new RptServerException with the message. |
RptServerException(java.lang.String msg,
java.lang.Throwable originalThrowable)
Construct a new RptServerException with the message and the original Throwable object. |
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
RptServerException
public RptServerException(java.lang.String msg)
- Construct a new RptServerException with the message.
- Parameters:
msg - the detailed message
RptServerException
public RptServerException(java.lang.String msg,
java.lang.Throwable originalThrowable)
- Construct a new RptServerException with the message and the original Throwable object.
- Parameters:
msg - the detailed messageoriginalThrowable - the original Throwable object.
toString
public java.lang.String toString()
getOriginalThrowable
public java.lang.Throwable getOriginalThrowable()
- Get the original Throwable object.
- Returns:
- the original Throwable object.