1 7 8 package javax.management; 9 10 11 19 public class BadBinaryOpValueExpException extends Exception { 20 21 22 23 private static final long serialVersionUID = 5068475589449021227L; 24 25 28 private ValueExp exp; 29 30 31 36 public BadBinaryOpValueExpException(ValueExp exp) { 37 this.exp = exp; 38 } 39 40 41 46 public ValueExp getExp() { 47 return exp; 48 } 49 50 53 public String toString() { 54 return "BadBinaryOpValueExpException: " + exp; 55 } 56 57 } 58 | Popular Tags |