01: package org.outerj.daisy.sync.mapping;
02:
03: public class MappingException extends Exception {
04: private static final long serialVersionUID = -3681476606984669795L;
05:
06: public MappingException(String msg) {
07: super (msg);
08: }
09:
10: public MappingException(Throwable e) {
11: super (e);
12: }
13:
14: public MappingException(String msg, Throwable e) {
15: super(msg, e);
16: }
17:
18: }
|