Package org.simpleframework.xml.core
Class PersistenceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.simpleframework.xml.core.PersistenceException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AttributeException
,ConstructorException
,CycleException
,ElementException
,InstantiationException
,MethodException
,PathException
,RootException
,TextException
,TransformException
,UnionException
,ValueRequiredException
The
PersistenceException
is thrown when there is a
persistance exception. This exception this will be thrown from the
Persister
should serialization or deserialization
of an object fail. Error messages provided to this exception are
formatted similar to the PrintStream.printf
method.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionPersistenceException
(String text, Object... list) Constructor for thePersistenceException
object.PersistenceException
(Throwable cause, String text, Object... list) Constructor for thePersistenceException
object. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PersistenceException
Constructor for thePersistenceException
object. 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
Constructor for thePersistenceException
object. 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
-