Gemfire JavaDocs
Package org.apache.geode
Class InternalGemFireException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.geode.GemFireException
-
- org.apache.geode.InternalGemFireException
-
- All Implemented Interfaces:
java.io.Serializable
public class InternalGemFireException extends GemFireException
AnInternalGemFireException
is thrown when a low level, internal, operation fails due to no fault of the user. The message often contains an operating system error code.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InternalGemFireException()
InternalGemFireException(java.lang.String message)
Creates a newInternalGemFireException
.InternalGemFireException(java.lang.String message, java.lang.Throwable thr)
Creates a newInternalGemFireException
that was caused by a given exceptionInternalGemFireException(java.lang.Throwable cause)
-
Method Summary
-
Methods inherited from class org.apache.geode.GemFireException
getRootCause
-
-
-
-
Constructor Detail
-
InternalGemFireException
public InternalGemFireException()
-
InternalGemFireException
public InternalGemFireException(java.lang.Throwable cause)
-
InternalGemFireException
public InternalGemFireException(java.lang.String message)
Creates a newInternalGemFireException
.- Parameters:
message
- the detail message
-
InternalGemFireException
public InternalGemFireException(java.lang.String message, java.lang.Throwable thr)
Creates a newInternalGemFireException
that was caused by a given exception- Parameters:
message
- the detail messagethr
- the cause
-
-