tomp.ext
Class EXTException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--tomp.ext.EXTException
All Implemented Interfaces:
java.io.Serializable

public class EXTException
extends java.lang.Exception

This EXTException is a base for all EXT-specific exceptions (no others are implemented yet).

See Also:
Serialized Form

Constructor Summary
EXTException(java.lang.String msg)
          Constructor only with a message String.
EXTException(java.lang.String msg, java.lang.Throwable e)
          Constructor with previous exception specified.
 
Method Summary
 java.lang.String getMessage()
           
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, 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

EXTException

public EXTException(java.lang.String msg,
                    java.lang.Throwable e)
Constructor with previous exception specified.

Parameters:
e - previous Throwable in the chain (does not to be a EXTException). Null value does not make sense but is not harmful. In such a case, use the second public constructor instead the first one.

EXTException

public EXTException(java.lang.String msg)
Constructor only with a message String.

Parameters:
msg - string message that will be written by getMessage() method
Method Detail

getMessage

public java.lang.String getMessage()
Overrides:
getMessage in class java.lang.Throwable