Package com.caucho.services.message
Class MessageServiceException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- com.caucho.services.message.MessageServiceException
-
- All Implemented Interfaces:
java.io.Serializable
public class MessageServiceException extends java.io.IOException
Exception for faults when the fault doesn't return a java exception. This exception is required for MicroHessianInput.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MessageServiceException()
Zero-arg constructor.MessageServiceException(java.lang.String message)
Create the exception.MessageServiceException(java.lang.String message, java.lang.Throwable rootCause)
Create the exception.MessageServiceException(java.lang.Throwable rootCause)
Create the exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Throwable
getCause()
Returns the underlying cause.java.lang.Throwable
getRootCause()
Returns the underlying cause.
-
-
-
Constructor Detail
-
MessageServiceException
public MessageServiceException()
Zero-arg constructor.
-
MessageServiceException
public MessageServiceException(java.lang.String message)
Create the exception.
-
MessageServiceException
public MessageServiceException(java.lang.String message, java.lang.Throwable rootCause)
Create the exception.
-
MessageServiceException
public MessageServiceException(java.lang.Throwable rootCause)
Create the exception.
-
-