1 7 package javax.xml.transform; 8 9 12 public class TransformerConfigurationException extends TransformerException { 13 14 18 public TransformerConfigurationException() { 19 super("Configuration Error"); 20 } 21 22 28 public TransformerConfigurationException(String msg) { 29 super(msg); 30 } 31 32 39 public TransformerConfigurationException(Throwable e) { 40 super(e); 41 } 42 43 51 public TransformerConfigurationException(String msg, Throwable e) { 52 super(msg, e); 53 } 54 55 65 public TransformerConfigurationException(String message, 66 SourceLocator locator) { 67 super(message, locator); 68 } 69 70 78 public TransformerConfigurationException(String message, 79 SourceLocator locator, 80 Throwable e) { 81 super(message, locator, e); 82 } 83 } 84 | Popular Tags |