jade.core
Class IMTPException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--jade.util.WrapperException
                    |
                    +--jade.core.IMTPException

public class IMTPException
extends WrapperException

This exception is thrown when an error occurs in the communication with a remote object

Author:
Giovanni Caire - TILAB, Nicolas Lhuillier - Motorola
See Also:
Serialized Form

Constructor Summary
IMTPException(java.lang.String msg)
          Constructs an IMTPException with the specified detail message.
IMTPException(java.lang.String msg, java.lang.Throwable t)
          Constructs an IMTPException with the specified detail message, wrapping the given Throwableobject.
 
Methods inherited from class jade.util.WrapperException
getMessage, getNested, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

IMTPException

public IMTPException(java.lang.String msg)
Constructs an IMTPException with the specified detail message.
Parameters:
msg - The detail message.

IMTPException

public IMTPException(java.lang.String msg,
                     java.lang.Throwable t)
Constructs an IMTPException with the specified detail message, wrapping the given Throwableobject.
Parameters:
msg - The detail message.
t - The exception to wrap.