1 7 8 package javax.management.relation; 9 10 import javax.management.JMException ; 11 12 18 public class RelationException extends JMException { 19 20 21 private static final long serialVersionUID = 5434016005679159613L; 22 23 26 public RelationException() { 27 super(); 28 } 29 30 35 public RelationException(String message) { 36 super(message); 37 } 38 } 39 | Popular Tags |