1 19 20 package org.netbeans.modules.xml.spi.dom; 21 22 import org.w3c.dom.*; 23 24 31 public final class UOException extends DOMException { 32 33 private static final long serialVersionUID = 6549456597318082770L; 34 35 38 public UOException() { 39 super(DOMException.NOT_SUPPORTED_ERR, "This read-only implementation supports DOM level 1 Core and XML module."); } 41 } 42 43 44 | Popular Tags |