Gemfire JavaDocs_test
Package org.apache.geode
Class InternalGemFireError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Error
-
- org.apache.geode.InternalGemFireError
-
- All Implemented Interfaces:
java.io.Serializable
public class InternalGemFireError extends java.lang.Error
Indicates that serious error has occurred within the GemFire system. This is similar toAssertionError
, but these errors are always enabled in a GemFire system.- Since:
- GemFire 5.5
- See Also:
AssertionError
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InternalGemFireError()
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.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(java.lang.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(java.lang.String message)
InternalGemFireError(java.lang.String message, java.lang.Throwable cause)
InternalGemFireError(java.lang.Throwable cause)
-
-
-
Constructor Detail
-
InternalGemFireError
public InternalGemFireError()
-
InternalGemFireError
public InternalGemFireError(java.lang.String message)
-
InternalGemFireError
public InternalGemFireError(java.lang.Throwable cause)
-
InternalGemFireError
public InternalGemFireError(java.lang.String message, java.lang.Throwable cause)
-
InternalGemFireError
public InternalGemFireError(java.lang.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.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:
Throwable.getCause()
-
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
-
-