org.objectweb.jonathan.apis.presentation
Class UnMarshalException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--org.objectweb.jonathan.apis.kernel.JonathanException
                    |
                    +--org.objectweb.jonathan.apis.presentation.UnMarshalException
All Implemented Interfaces:
Serializable

public class UnMarshalException
extends JonathanException

UnMarshalException is a checked exception that indicates that an error occurred when unmarshalling data.

See Also:
Serialized Form

Constructor Summary
UnMarshalException()
          Constructs a new UnMarshalException with no detail message.
UnMarshalException(Exception exception)
          Builds a UnMarshalException that wraps another exception.
UnMarshalException(String s)
          Builds a UnMarshalException 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, getLocalizedMessage
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

UnMarshalException

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

UnMarshalException

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

UnMarshalException

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