Package org.simpleframework.xml.core
Class PersistenceException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.simpleframework.xml.core.PersistenceException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
AttributeException,ConstructorException,CycleException,ElementException,InstantiationException,MethodException,PathException,RootException,TextException,TransformException,UnionException,ValueRequiredException
public class PersistenceException extends java.lang.ExceptionThePersistenceExceptionis thrown when there is a persistance exception. This exception this will be thrown from thePersistershould serialization or deserialization of an object fail. Error messages provided to this exception are formatted similar to thePrintStream.printfmethod.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PersistenceException(java.lang.String text, java.lang.Object... list)Constructor for thePersistenceExceptionobject.PersistenceException(java.lang.Throwable cause, java.lang.String text, java.lang.Object... list)Constructor for thePersistenceExceptionobject.
-
-
-
Constructor Detail
-
PersistenceException
public PersistenceException(java.lang.String text, java.lang.Object... list)Constructor for thePersistenceExceptionobject. This constructor takes a format string an a variable number of object arguments, which can be inserted into the format string.- Parameters:
text- a format string used to present the error messagelist- a list of arguments to insert into the string
-
PersistenceException
public PersistenceException(java.lang.Throwable cause, java.lang.String text, java.lang.Object... list)Constructor for thePersistenceExceptionobject. This constructor takes a format string an a variable number of object arguments, which can be inserted into the format string.- Parameters:
cause- the source exception this is used to representtext- a format string used to present the error messagelist- a list of arguments to insert into the string
-
-