com.flat502.rox.marshal
Class MarshallingException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.flat502.rox.marshal.MarshallingException
All Implemented Interfaces:
java.io.Serializable

public class MarshallingException
extends java.lang.Exception

An exception raised when an XML-RPC method call or response could not be marshalled to, or from, a stream or string.

See Also:
Serialized Form

Constructor Summary
MarshallingException(java.lang.String msg)
          Constructs a new exception with msg as its detail message.
MarshallingException(java.lang.String msg, java.lang.Throwable e)
          Constructs a new exception with msg as its detail message and e as the causal exception.
MarshallingException(java.lang.Throwable e)
          Constructs a new exception with null as its detail message and e as the causal exception.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, 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

MarshallingException

public MarshallingException(java.lang.String msg)
Constructs a new exception with msg as its detail message.

Parameters:
msg - A detail message describing the problem.

MarshallingException

public MarshallingException(java.lang.String msg,
                            java.lang.Throwable e)
Constructs a new exception with msg as its detail message and e as the causal exception.

Parameters:
msg - A detail message describing the problem.
e - The exception that resulted in this exception being raised.

MarshallingException

public MarshallingException(java.lang.Throwable e)
Constructs a new exception with null as its detail message and e as the causal exception.

Parameters:
e - The exception that resulted in this exception being raised.