git://git.phpeclipse.com
/
phpeclipse.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
misc changes
[phpeclipse.git]
/
archive
/
net.sourceforge.phpeclipse.sql
/
src
/
net
/
sourceforge
/
phpdt
/
sql
/
adapters
/
NoSuchAdapterException.java
1
package net.sourceforge.phpdt.sql.adapters;
2
3
public class NoSuchAdapterException extends Exception {
4
public NoSuchAdapterException(String driverName) {
5
super("Database not supported: ->" + driverName + "<-");
6
}
7
}