01: /*
02: * @(#)HashMapNode.java 1.36 02/03/21
03: *
04: * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
05: * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
06: */
07: package org.enhydra.xml;
08:
09: import org.w3c.dom.DOMException;
10:
11: /**
12: * A class representing a node in a meta-data tree,
13: * which extends DOMException class
14: *
15: * @version 1.0
16: */
17: public class NodeDOMException extends DOMException {
18: public NodeDOMException(short code, String message) {
19: super(code, message);
20: }
21: }
|