public abstract class GemFireCheckedException extends Exception
This class ought to be called GemFireException, but that name is reserved for an older
class that extends RuntimeException
.
GemFireException
,
Serialized FormConstructor and Description |
---|
GemFireCheckedException()
Creates a new
GemFireException with no detailed message. |
GemFireCheckedException(String message)
Creates a new
GemFireCheckedException with the given detail message. |
GemFireCheckedException(String message,
Throwable cause)
Creates a new
GemFireException with the given detail message and cause. |
GemFireCheckedException(Throwable cause)
Creates a new
GemFireCheckedException with the given cause and no detail message |
Modifier and Type | Method and Description |
---|---|
Throwable |
getRootCause()
Returns the root cause of this
GemFireCheckedException or null if the
cause is nonexistent or unknown. |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public GemFireCheckedException()
GemFireException
with no detailed message.public GemFireCheckedException(String message)
GemFireCheckedException
with the given detail message.message
- the detail messagepublic GemFireCheckedException(String message, Throwable cause)
GemFireException
with the given detail message and cause.message
- the detail messagecause
- the causepublic GemFireCheckedException(Throwable cause)
GemFireCheckedException
with the given cause and no detail messagecause
- the causepublic Throwable getRootCause()
GemFireCheckedException
or null
if the
cause is nonexistent or unknown.GemFireCheckedException