1 7 8 9 package javax.management.remote; 10 11 import java.io.IOException ; 12 13 import javax.management.MBeanServer ; 15 16 27 public class JMXServerErrorException extends IOException { 28 29 private static final long serialVersionUID = 3996732239558744666L; 30 31 40 public JMXServerErrorException(String s, Error err) { 41 super(s); 42 cause = err; 43 } 44 45 public Throwable getCause() { 46 return cause; 47 } 48 49 53 private final Error cause; 54 } 55 | Popular Tags |