1 64 65 package com.jcorporate.expresso.core.db.exception; 66 67 import com.jcorporate.expresso.core.db.DBException; 68 69 74 75 public class ConnectionPoolException extends DBException { 76 77 80 public ConnectionPoolException() { 81 super(); 82 } 83 84 90 public ConnectionPoolException(String s) { 91 super(s); 92 } 93 94 99 public ConnectionPoolException(String s, Throwable t) { 100 super(s, t); 101 } 102 103 107 public ConnectionPoolException(Throwable t) { 108 super(t); 109 } 110 } 111 | Popular Tags |