1 23 24 package org.enhydra.xml.lazydom; 25 26 import org.w3c.dom.DOMException ; 27 28 31 public class LazyDOMException extends DOMException { 32 38 public LazyDOMException(short code, 39 String msg) { 40 super(code, msg); 41 } 42 43 46 public static void noModifibcationAllowedErr() throws LazyDOMException { 47 throw new LazyDOMException(NO_MODIFICATION_ALLOWED_ERR, 48 "Modification not allowed"); 49 } 50 } 51 | Popular Tags |