1 24 25 package org.objectweb.cjdbc.common.exceptions; 26 27 35 public class BadConnectionException extends CJDBCException 36 { 37 private static final long serialVersionUID = 2379659551945349743L; 38 39 44 public BadConnectionException(Throwable cause) 45 { 46 super(cause); 47 } 48 49 55 public BadConnectionException(String message, Throwable cause) 56 { 57 super(message, cause); 58 } 59 60 } 61 | Popular Tags |