1 2 package net.sf.saxon.type; 3 4 import javax.xml.transform.SourceLocator ; 5 import javax.xml.transform.TransformerConfigurationException ; 6 7 11 12 public class SchemaException extends TransformerConfigurationException { 13 14 18 19 public SchemaException() { 20 super(); 21 } 22 23 public SchemaException(String message, SourceLocator locator) { 24 super(message, locator); 25 } 26 27 32 33 public SchemaException(String message) { 34 super(message); 35 } 36 37 43 44 public SchemaException(Exception exception) { 45 super(exception); 46 } 47 48 55 56 public SchemaException(String message, Exception exception) { 57 super(message, exception); 58 } 59 60 } 61 62 | Popular Tags |