5345b0650483502b8e62ffb00c8c49042fb2acac
[phpeclipse.git] /
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 }