1 8 package org.apache.avalon.excalibur.datasource; 9 10 import java.sql.SQLException ; 11 12 13 21 public class NoAvailableConnectionException extends SQLException { 22 23 public NoAvailableConnectionException() 24 { 25 super(); 26 } 27 28 public NoAvailableConnectionException( String message ) 29 { 30 super( message ); 31 } 32 33 public NoAvailableConnectionException( String message, String SQLState ) 34 { 35 super( message, SQLState ); 36 } 37 38 public NoAvailableConnectionException( String message, String SQLState, int vendorCode ) 39 { 40 super( message, SQLState, vendorCode ); 41 } 42 } 43 | Popular Tags |