public class InternalGemFireError extends Error
AssertionError
, but these errors are always enabled in a GemFire
system.AssertionError
,
Serialized FormConstructor and Description |
---|
InternalGemFireError() |
InternalGemFireError(boolean detailMessage)
Constructs an AssertionError with its detail message derived from the specified
boolean , 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 specified
char , 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 specified
double , 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 specified
float , 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 specified
int , 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 specified
long , 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) |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public InternalGemFireError()
public InternalGemFireError(String message)
public InternalGemFireError(Throwable cause)
public InternalGemFireError(Object detailMessage)
If the specified object is an instance of Throwable, it becomes the cause of the newly constructed assertion error.
detailMessage
- value to be used in constructing detail messageThrowable.getCause()
public InternalGemFireError(boolean detailMessage)
boolean
, which is converted to a string as defined in The Java Language
Specification, Second Edition, Section 15.18.1.1.detailMessage
- value to be used in constructing detail messagepublic InternalGemFireError(char detailMessage)
char
, which is converted to a string as defined in The Java Language
Specification, Second Edition, Section 15.18.1.1.detailMessage
- value to be used in constructing detail messagepublic InternalGemFireError(int detailMessage)
int
, which is converted to a string as defined in The Java Language
Specification, Second Edition, Section 15.18.1.1.detailMessage
- value to be used in constructing detail messagepublic InternalGemFireError(long detailMessage)
long
, which is converted to a string as defined in The Java Language
Specification, Second Edition, Section 15.18.1.1.detailMessage
- value to be used in constructing detail messagepublic InternalGemFireError(float detailMessage)
float
, which is converted to a string as defined in The Java Language
Specification, Second Edition, Section 15.18.1.1.detailMessage
- value to be used in constructing detail messagepublic InternalGemFireError(double detailMessage)
double
, which is converted to a string as defined in The Java Language
Specification, Second Edition, Section 15.18.1.1.detailMessage
- value to be used in constructing detail message