1 57 package com.sun.org.apache.xerces.internal.impl.xs; 58 59 66 public class XMLSchemaException extends Exception { 67 68 String key; 70 Object [] args; 71 72 public XMLSchemaException(String key, Object [] args) { 74 this.key = key; 75 this.args = args; 76 } 77 78 public String getKey() { 79 return key; 80 } 81 82 public Object [] getArgs() { 83 return args; 84 } 85 86 } 87 | Popular Tags |