01: package org.dbbrowser.db.engine.exception;
02:
03: /**
04: * DBEngineException is thrown when somethning goes wrong with the DB Engine
05: * @author amangat
06: *
07: */
08: public class DBEngineException extends Exception {
09: private static final long serialVersionUID = 1l;
10:
11: /**
12: * Constrcuter
13: * @param message
14: */
15: public DBEngineException(String message) {
16: super(message);
17: }
18: }
|