Package org.zkoss.chart.lic.xml
Class PersistenceServiceException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.zkoss.chart.lic.xml.PersistenceServiceException
-
- All Implemented Interfaces:
Serializable
public class PersistenceServiceException extends Exception
An instance of this class is thrown when storing or loading a persistent object graph to or from an XML file has failed. This exception is always instantiated with a valid cause. Its detail message is copied from the localized detail message of the cause.- Author:
- Christian Schlichtherle
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PersistenceServiceException(Throwable cause)
Constructs an instance ofPersistenceServiceException
with the specifiedcause
.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
PersistenceServiceException
public PersistenceServiceException(Throwable cause)
Constructs an instance ofPersistenceServiceException
with the specifiedcause
.- Parameters:
cause
- The cause for this exception to be thrown.- Throws:
NullPointerException
- Ifcause
isnull
.
-
-