12 lines
304 B
Java
12 lines
304 B
Java
package SecExceptions;
|
|
|
|
import SQL2Secondo.ErrorCodes;
|
|
import java.sql.SQLException;
|
|
|
|
public class NotSuppDriverException extends SQLException {
|
|
|
|
public NotSuppDriverException(String s) {
|
|
super(ErrorCodes.NoComp1Ln + ErrorCodes.NoComp2Ln + s.toUpperCase() + ErrorCodes.NoCompDriver);
|
|
}
|
|
}
|