
org.simpleframework.xml.load.TextException Maven / Gradle / Ivy
/*
* TextException.java April 2007
*
* Copyright (C) 2007, Niall Gallagher
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General
* Public License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA
*/
package org.simpleframework.xml.load;
/**
* The TextException
is used to represent conditions
* when an XML element text value is in an invalid state. Typically
* this is used when text cannot be serialized or deserialized. Also
* this may be thrown if the Text
annotation is used
* to label a field that is not a primitive type.
*
* @author Niall Gallagher
*/
public class TextException extends PersistenceException {
/**
* Constructor for the TextException
object. This
* constructor takes a format string an a variable number of object
* arguments, which can be inserted into the format string.
*
* @param text a format string used to present the error message
* @param list a list of arguments to insert into the string
*/
public TextException(String text, Object... list) {
super(text, list);
}
/**
* Constructor for the TextException
object. This
* constructor takes a format string an a variable number of object
* arguments, which can be inserted into the format string.
*
* @param cause the source exception this is used to represent
* @param text a format string used to present the error message
* @param list a list of arguments to insert into the string
*/
public TextException(Throwable cause, String text, Object... list) {
super(cause, text, list);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy