01: package org.dbbrowser.drivermanager;
02:
03: /**
04: * Exception of this class is thrown by the DBBrowserDriverManager if there is a problem whicl getting connection to the database
05: */
06: public class DriverManagerException extends Exception {
07: private static final long serialVersionUID = 1l;
08:
09: /**
10: * Constructer
11: * @param exc
12: */
13: public DriverManagerException(Exception exc) {
14: super(exc);
15: }
16: }
|