Package com.caucho.burlap.client
Class BurlapRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.caucho.burlap.client.BurlapRuntimeException
-
- All Implemented Interfaces:
Serializable
public class BurlapRuntimeException extends RuntimeException
Wrapper for protocol exceptions thrown in the proxy.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BurlapRuntimeException()Zero-arg constructor.BurlapRuntimeException(String message)Create the exception.BurlapRuntimeException(String message, Throwable rootCause)Create the exception.BurlapRuntimeException(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
-
BurlapRuntimeException
public BurlapRuntimeException()
Zero-arg constructor.
-
BurlapRuntimeException
public BurlapRuntimeException(String message)
Create the exception.
-
BurlapRuntimeException
public BurlapRuntimeException(String message, Throwable rootCause)
Create the exception.
-
BurlapRuntimeException
public BurlapRuntimeException(Throwable rootCause)
Create the exception.
-
-