1 24 25 package org.objectweb.cjdbc.common.jmx; 26 27 import org.objectweb.cjdbc.common.exceptions.CJDBCException; 28 35 public class JmxException extends CJDBCException 36 { 37 private static final long serialVersionUID = 2591479799351433445L; 38 39 42 public JmxException() 43 { 44 } 45 46 51 public JmxException(String message) 52 { 53 super(message); 54 } 55 56 61 public JmxException(Throwable cause) 62 { 63 super(cause); 64 } 65 66 67 } 68 | Popular Tags |