1 22 package javax.xml.registry; 23 24 28 public class UnexpectedObjectException 29 extends JAXRException  30 { 31 public UnexpectedObjectException() 32 { 33 } 34 public UnexpectedObjectException(String msg) 35 { 36 super(msg); 37 } 38 public UnexpectedObjectException(String msg, Throwable cause) 39 { 40 super(msg, cause); 41 } 42 public UnexpectedObjectException(Throwable cause) 43 { 44 super(cause); 45 } 46 } 47 | Popular Tags |