Package org.apache.geode
Class InternalGemFireError
java.lang.Object
java.lang.Throwable
java.lang.Error
org.apache.geode.InternalGemFireError
- All Implemented Interfaces:
Serializable
Indicates that serious error has occurred within the GemFire system.
This is similar to
AssertionError, but these errors are always enabled in a GemFire
system.- Since:
- GemFire 5.5
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInternalGemFireError(boolean detailMessage) Constructs an AssertionError with its detail message derived from the specifiedboolean, which is converted to a string as defined in The Java Language Specification, Second Edition, Section 15.18.1.1.InternalGemFireError(char detailMessage) Constructs an AssertionError with its detail message derived from the specifiedchar, which is converted to a string as defined in The Java Language Specification, Second Edition, Section 15.18.1.1.InternalGemFireError(double detailMessage) Constructs an AssertionError with its detail message derived from the specifieddouble, which is converted to a string as defined in The Java Language Specification, Second Edition, Section 15.18.1.1.InternalGemFireError(float detailMessage) Constructs an AssertionError with its detail message derived from the specifiedfloat, which is converted to a string as defined in The Java Language Specification, Second Edition, Section 15.18.1.1.InternalGemFireError(int detailMessage) Constructs an AssertionError with its detail message derived from the specifiedint, which is converted to a string as defined in The Java Language Specification, Second Edition, Section 15.18.1.1.InternalGemFireError(long detailMessage) Constructs an AssertionError with its detail message derived from the specifiedlong, which is converted to a string as defined in The Java Language Specification, Second Edition, Section 15.18.1.1.InternalGemFireError(Object detailMessage) Constructs an AssertionError with its detail message derived from the specified object, which is converted to a string as defined in The Java Language Specification, Second Edition, Section 15.18.1.1.InternalGemFireError(String message) InternalGemFireError(String message, Throwable cause) InternalGemFireError(Throwable cause) -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InternalGemFireError
public InternalGemFireError() -
InternalGemFireError
-
InternalGemFireError
-
InternalGemFireError
-
InternalGemFireError
Constructs an AssertionError with its detail message derived from the specified object, which is converted to a string as defined in The Java Language Specification, Second Edition, Section 15.18.1.1.If the specified object is an instance of Throwable, it becomes the cause of the newly constructed assertion error.
- Parameters:
detailMessage- value to be used in constructing detail message- See Also:
-
InternalGemFireError
public InternalGemFireError(boolean detailMessage) Constructs an AssertionError with its detail message derived from the specifiedboolean, which is converted to a string as defined in The Java Language Specification, Second Edition, Section 15.18.1.1.- Parameters:
detailMessage- value to be used in constructing detail message
-
InternalGemFireError
public InternalGemFireError(char detailMessage) Constructs an AssertionError with its detail message derived from the specifiedchar, which is converted to a string as defined in The Java Language Specification, Second Edition, Section 15.18.1.1.- Parameters:
detailMessage- value to be used in constructing detail message
-
InternalGemFireError
public InternalGemFireError(int detailMessage) Constructs an AssertionError with its detail message derived from the specifiedint, which is converted to a string as defined in The Java Language Specification, Second Edition, Section 15.18.1.1.- Parameters:
detailMessage- value to be used in constructing detail message
-
InternalGemFireError
public InternalGemFireError(long detailMessage) Constructs an AssertionError with its detail message derived from the specifiedlong, which is converted to a string as defined in The Java Language Specification, Second Edition, Section 15.18.1.1.- Parameters:
detailMessage- value to be used in constructing detail message
-
InternalGemFireError
public InternalGemFireError(float detailMessage) Constructs an AssertionError with its detail message derived from the specifiedfloat, which is converted to a string as defined in The Java Language Specification, Second Edition, Section 15.18.1.1.- Parameters:
detailMessage- value to be used in constructing detail message
-
InternalGemFireError
public InternalGemFireError(double detailMessage) Constructs an AssertionError with its detail message derived from the specifieddouble, which is converted to a string as defined in The Java Language Specification, Second Edition, Section 15.18.1.1.- Parameters:
detailMessage- value to be used in constructing detail message
-