Class MarshalException

All Implemented Interfaces:
Serializable, ErrorCodeAccessor, Trap

public class MarshalException extends AbstractException
Thrown when marshaling / serializing an object fails.
See Also:
  • Constructor Details

    • MarshalException

      public MarshalException(String aMessage)
      Instantiates a new marshal exception.
      Parameters:
      aMessage - The aMessage describing this exception.
    • MarshalException

      public MarshalException(String aMessage, Throwable aCause)
      Instantiates a new marshal exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
    • MarshalException

      public MarshalException(Throwable aCause)
      Instantiates a new marshal exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.
    • MarshalException

      public MarshalException(String aMessage, String aErrorCode)
      Instantiates a new marshal exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aErrorCode - The error code identifying this exception.
    • MarshalException

      public MarshalException(String aMessage, Throwable aCause, String aErrorCode)
      Instantiates a new marshal exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
      aErrorCode - The error code identifying this exception.
    • MarshalException

      public MarshalException(Throwable aCause, String aErrorCode)
      Instantiates a new marshal exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.
      aErrorCode - The error code identifying this exception.