01: package com.vividsolutions.jump.datastore;
02:
03: public class DataStoreException extends Exception {
04:
05: public DataStoreException(String msg) {
06: super (msg);
07: }
08:
09: public DataStoreException(String msg, Exception cause) {
10: super (msg, cause);
11: }
12:
13: public DataStoreException(Exception cause) {
14: super(cause);
15: }
16:
17: }
|