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