public class InternalGemFireError
extends java.lang.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(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) |
public InternalGemFireError()
public InternalGemFireError(java.lang.String message)
message
- public InternalGemFireError(java.lang.Throwable cause)
cause
- public InternalGemFireError(java.lang.String message, java.lang.Throwable cause)
message
- cause
- public InternalGemFireError(java.lang.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