1 16 package org.apache.xerces.impl.xs; 17 18 27 public class XMLSchemaException extends Exception { 28 29 30 static final long serialVersionUID = -9096984648537046218L; 31 32 String key; 34 Object [] args; 35 36 public XMLSchemaException(String key, Object [] args) { 38 this.key = key; 39 this.args = args; 40 } 41 42 public String getKey() { 43 return key; 44 } 45 46 public Object [] getArgs() { 47 return args; 48 } 49 50 } 51 | Popular Tags |