1 23 24 package org.continuent.sequoia.common.exceptions; 25 26 34 public class BadConnectionException extends SequoiaException 35 { 36 private static final long serialVersionUID = 2379659551945349743L; 37 38 43 public BadConnectionException(Throwable cause) 44 { 45 super(cause); 46 } 47 48 54 public BadConnectionException(String message, Throwable cause) 55 { 56 super(message, cause); 57 } 58 59 } 60 | Popular Tags |