1 64 65 package com.jcorporate.expresso.core.db.exception; 66 67 72 73 public class PoolFullException extends ConnectionPoolException { 74 77 public PoolFullException() { 78 super(); 79 } 80 81 87 public PoolFullException(String s) { 88 super(s); 89 } 90 91 96 public PoolFullException(String s, Throwable t) { 97 super(s, t); 98 } 99 100 104 public PoolFullException(Throwable t) { 105 super(t); 106 } 107 108 } | Popular Tags |