org.objectweb.jonathan.presentation.api
Class MarshalException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.objectweb.jonathan.apis.kernel.JonathanException
              extended byorg.objectweb.jonathan.presentation.api.MarshalException
All Implemented Interfaces:
Serializable

public class MarshalException
extends org.objectweb.jonathan.apis.kernel.JonathanException

MarshalException is a checked exception that indicates that an error occured when marshalling data.

See Also:
Serialized Form

Constructor Summary
MarshalException()
          Constructs a new MarshalException with no detail message.
MarshalException(Exception exception)
          Builds a MarshalException that wraps another exception.
MarshalException(String s)
          Builds a MarshalException with a detail message.
 
Methods inherited from class org.objectweb.jonathan.apis.kernel.JonathanException
getMessage, printStackTrace, printStackTrace, printStackTrace, represents, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

MarshalException

public MarshalException()
Constructs a new MarshalException with no detail message.


MarshalException

public MarshalException(String s)
Builds a MarshalException with a detail message.


MarshalException

public MarshalException(Exception exception)
Builds a MarshalException that wraps another exception.