SQL Plugin copied from Quantum plugin and refactored for PHPEclipse
[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 }