1 16 19 package org.apache.xml.dtm; 20 21 import javax.xml.transform.SourceLocator ; 22 23 26 public class DTMConfigurationException extends DTMException { 27 28 32 public DTMConfigurationException() { 33 super("Configuration Error"); 34 } 35 36 42 public DTMConfigurationException(String msg) { 43 super(msg); 44 } 45 46 53 public DTMConfigurationException(Throwable e) { 54 super(e); 55 } 56 57 66 public DTMConfigurationException(String msg, Throwable e) { 67 super(msg, e); 68 } 69 70 80 public DTMConfigurationException(String message, 81 SourceLocator locator) { 82 super(message, locator); 83 } 84 85 93 public DTMConfigurationException(String message, 94 SourceLocator locator, 95 Throwable e) { 96 super(message, locator, e); 97 } 98 } 99 | Popular Tags |