package org.jfree.xml.parser;
import org.jfree.xml.util.ObjectDescriptionException;
/**
* An XML reader exception.
*/
public class XmlReaderException extends ObjectDescriptionException {
/**
* Creates a StackableRuntimeException with no message and no parent.
*/
public XmlReaderException() {
super();
}
/**
* Creates an exception.
*
* @param message the exception message.
*/
public XmlReaderException(final String message) {
super(message);
}
/**
* Creates an exception.
*
* @param message the exception message.
* @param ex the parent exception.
*/
public XmlReaderException(final String message, final Exception ex) {
super(message, ex);
}
}