1 7 8 package javax.management; 9 10 import javax.management.OperationsException ; 12 13 14 19 public class ServiceNotFoundException extends OperationsException { 20 21 22 private static final long serialVersionUID = -3990675661956646827L; 23 24 27 public ServiceNotFoundException() { 28 super(); 29 } 30 31 36 public ServiceNotFoundException(String message) { 37 super(message); 38 } 39 40 } 41 | Popular Tags |