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:
Serializable
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:
-
Constructor Summary
ConstructorsConstructorDescriptionPdxInitializationException(String message) Construct a new exception with the given messagePdxInitializationException(String message, Throwable cause) Construct a new exception with the given message and cause -
Method Summary
Methods inherited from class org.apache.geode.GemFireException
getRootCauseMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PdxInitializationException
Construct a new exception with the given message- Parameters:
message- the message of the new exception
-
PdxInitializationException
Construct a new exception with the given message and cause- Parameters:
message- the message of the new exceptioncause- the cause of the new exception
-