Package com.caucho.hessian.io
Class HessianProtocolException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- com.caucho.hessian.io.HessianProtocolException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
BurlapProtocolException,HessianFieldException
public class HessianProtocolException extends 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 HessianProtocolException()Zero-arg constructor.HessianProtocolException(String message)Create the exception.HessianProtocolException(String message, Throwable rootCause)Create the exception.HessianProtocolException(Throwable rootCause)Create the exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ThrowablegetCause()Returns the underlying cause.ThrowablegetRootCause()Returns the underlying cause.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
HessianProtocolException
public HessianProtocolException()
Zero-arg constructor.
-
HessianProtocolException
public HessianProtocolException(String message)
Create the exception.
-
HessianProtocolException
public HessianProtocolException(String message, Throwable rootCause)
Create the exception.
-
HessianProtocolException
public HessianProtocolException(Throwable rootCause)
Create the exception.
-
-