jade.core
Class ProfileException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--jade.util.WrapperException
                    |
                    +--jade.core.ProfileException
All Implemented Interfaces:
java.io.Serializable

public class ProfileException
extends WrapperException

This class represents an exception related to JADE profile creation or management.

Author:
Giovanni Caire - TILAB
See Also:
Serialized Form

Constructor Summary
ProfileException(java.lang.String msg)
          Construct a ProfileException with the given message.
ProfileException(java.lang.String msg, java.lang.Throwable t)
          Constructs a ProfileException 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, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ProfileException

public ProfileException(java.lang.String msg)
Construct a ProfileException with the given message.

Parameters:
msg - The exception message.

ProfileException

public ProfileException(java.lang.String msg,
                        java.lang.Throwable t)
Constructs a ProfileException with the specified detail message, wrapping the given Throwableobject.

Parameters:
msg - The detail message.
t - The exception to wrap.


JADE