Package com.caucho.burlap.client
Class BurlapProtocolException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- com.caucho.burlap.client.BurlapProtocolException
-
- All Implemented Interfaces:
Serializable
public class BurlapProtocolException extends IOException
Exception for faults when the fault doesn't return a java exception. This exception is required for MicroBurlapInput.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BurlapProtocolException()Zero-arg constructor.BurlapProtocolException(String message)Create the exception.BurlapProtocolException(String message, Throwable rootCause)Create the exception.BurlapProtocolException(Throwable rootCause)Create the exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ThrowablegetRootCause()Returns the underlying cause.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
BurlapProtocolException
public BurlapProtocolException()
Zero-arg constructor.
-
BurlapProtocolException
public BurlapProtocolException(String message)
Create the exception.
-
BurlapProtocolException
public BurlapProtocolException(String message, Throwable rootCause)
Create the exception.
-
BurlapProtocolException
public BurlapProtocolException(Throwable rootCause)
Create the exception.
-
-
Method Detail
-
getRootCause
public Throwable getRootCause()
Returns the underlying cause.
-
-