1 7 8 9 package javax.management.remote; 10 11 import java.io.IOException ; 12 import java.util.Map ; 13 14 23 public class JMXProviderException extends IOException { 24 25 private static final long serialVersionUID = -3166703627550447198L; 26 27 31 public JMXProviderException() { 32 } 33 34 40 public JMXProviderException(String message) { 41 super(message); 42 } 43 44 51 public JMXProviderException(String message, Throwable cause) { 52 super(message); 53 this.cause = cause; 54 } 55 56 public Throwable getCause() { 57 return cause; 58 } 59 60 65 private Throwable cause = null; 66 } 67 | Popular Tags |