01: package com.technoetic.xplanner.db;
02:
03: public class QueryException extends Exception {
04: public QueryException() {
05: }
06:
07: public QueryException(Throwable cause) {
08: super (cause);
09: }
10:
11: public QueryException(String message) {
12: super (message);
13: }
14:
15: public QueryException(String message, Throwable cause) {
16: super(message, cause);
17: }
18: }
|