1 23 24 package org.continuent.sequoia.common.jmx; 25 26 import org.continuent.sequoia.common.exceptions.SequoiaException; 27 34 public class JmxException extends SequoiaException 35 { 36 private static final long serialVersionUID = 2591479799351433445L; 37 38 41 public JmxException() 42 { 43 } 44 45 50 public JmxException(String message) 51 { 52 super(message); 53 } 54 55 60 public JmxException(Throwable cause) 61 { 62 super(cause); 63 } 64 65 66 } 67 | Popular Tags |