Gemfire JavaDocs_test
Package org.apache.geode.pdx
Class PdxInitializationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.geode.GemFireException
-
- org.apache.geode.pdx.PdxInitializationException
-
- All Implemented Interfaces:
java.io.Serializable
public class PdxInitializationException extends GemFireException
Thrown if the PDX system could not be successfully initialized. The cause will give the detailed reason why initialization failed.- Since:
- GemFire 6.6
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PdxInitializationException(java.lang.String message)
Construct a new exception with the given messagePdxInitializationException(java.lang.String message, java.lang.Throwable cause)
Construct a new exception with the given message and cause
-
Method Summary
-
Methods inherited from class org.apache.geode.GemFireException
getRootCause
-
-
-
-
Constructor Detail
-
PdxInitializationException
public PdxInitializationException(java.lang.String message)
Construct a new exception with the given message- Parameters:
message
- the message of the new exception
-
PdxInitializationException
public PdxInitializationException(java.lang.String message, java.lang.Throwable cause)
Construct a new exception with the given message and cause- Parameters:
message
- the message of the new exceptioncause
- the cause of the new exception
-
-