1 /*2 * $Id: InvalidXMLException.java,v 1.1 2003/08/05 09:35:09 znerd Exp $3 */4 package org.znerd.xmlenc;5 6 /**7 * Exception thrown when invalid XML is detected.8 *9 * @version $Revision: 1.1 $ $Date: 2003/08/05 09:35:09 $10 * @author Ernst de Haan (<a HREF="mailto:znerd@FreeBSD.org">znerd@FreeBSD.org</a>)11 *12 * @since xmlenc 0.3713 */14 public final class InvalidXMLException extends RuntimeException {15 16 //-------------------------------------------------------------------------17 // Class fields18 //-------------------------------------------------------------------------19 20 //-------------------------------------------------------------------------21 // Class functions22 //-------------------------------------------------------------------------23 24 //-------------------------------------------------------------------------25 // Constructors26 //-------------------------------------------------------------------------27 28 /**29 * Constructs a new <code>InvalidXMLException</code> with the specified30 * detail message.31 *32 * @param message33 * the optional detail message, or <code>null</code>.34 */35 public InvalidXMLException(String message) {36 super(message);37 }38 39 40 //-------------------------------------------------------------------------41 // Fields42 //-------------------------------------------------------------------------43 44 //-------------------------------------------------------------------------45 // Methods46 //-------------------------------------------------------------------------47 }48