KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > xml > NodeDOMException


1 /*
2  * @(#)HashMapNode.java 1.36 02/03/21
3  *
4  * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7 package org.enhydra.xml;
8
9 import org.w3c.dom.DOMException JavaDoc;
10
11
12 /**
13  * A class representing a node in a meta-data tree,
14  * which extends DOMException class
15  *
16  * @version 1.0
17  */

18 public class NodeDOMException extends DOMException JavaDoc {
19     public NodeDOMException(short code, String JavaDoc message) {
20         super(code, message);
21     }
22 }
23
Popular Tags