KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > znerd > xmlenc > InvalidXMLException


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.37
13  */

14 public final class InvalidXMLException extends RuntimeException JavaDoc {
15
16    //-------------------------------------------------------------------------
17
// Class fields
18
//-------------------------------------------------------------------------
19

20    //-------------------------------------------------------------------------
21
// Class functions
22
//-------------------------------------------------------------------------
23

24    //-------------------------------------------------------------------------
25
// Constructors
26
//-------------------------------------------------------------------------
27

28    /**
29     * Constructs a new <code>InvalidXMLException</code> with the specified
30     * detail message.
31     *
32     * @param message
33     * the optional detail message, or <code>null</code>.
34     */

35    public InvalidXMLException(String JavaDoc message) {
36       super(message);
37    }
38
39
40    //-------------------------------------------------------------------------
41
// Fields
42
//-------------------------------------------------------------------------
43

44    //-------------------------------------------------------------------------
45
// Methods
46
//-------------------------------------------------------------------------
47
}
48
Popular Tags