jet.server.api
Class RptServerException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjet.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.
 
Method Summary
 java.lang.Throwable getOriginalThrowable()
          Get the original Throwable object.
 java.lang.String toString()
           
 
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
 

Constructor Detail

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 message
originalThrowable - the original Throwable object.
Method Detail

toString

public java.lang.String toString()

getOriginalThrowable

public java.lang.Throwable getOriginalThrowable()
Get the original Throwable object.

Returns:
the original Throwable object.