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