package net.sourceforge.phpdt.sql.adapters;
 
+import net.sourceforge.phpdt.sql.Messages;
+
 public class NoSuchAdapterException extends Exception {
     public NoSuchAdapterException(String driverName) {
-        super("Database not supported: ->" + driverName + "<-");
+        super(Messages.getString("Error.NoDatabase") + driverName + Messages.getString("NoSuchAdapterException.<-_2")); //$NON-NLS-1$ //$NON-NLS-2$
     }
 }
\ No newline at end of file