1 22 package javax.xml.registry; 23 24 import javax.xml.registry.infomodel.Key ; 25 26 30 public class RegistryException 31 extends JAXRException  32 { 33 private Key key; 34 35 public RegistryException() 36 { 37 } 38 public RegistryException(String msg) 39 { 40 this(msg, null); 41 } 42 public RegistryException(String msg, Throwable cause) 43 { 44 super(msg, cause); 45 } 46 47 public RegistryException(Throwable cause) 48 { 49 super(cause); 50 } 51 52 public Key getErrorObjectKey() throws JAXRException  53 { 54 return key; 55 } 56 public void setErrorObjectKey(Key key) throws JAXRException  57 { 58 this.key = key; 59 } 60 } 61 | Popular Tags |