--- /dev/null
+package net.sourceforge.phpdt.sql.adapters;
+
+public class NoSuchAdapterException extends Exception {
+ public NoSuchAdapterException(String driverName) {
+ super("Database not supported: ->" + driverName + "<-");
+ }
+}
\ No newline at end of file