01: package com.dappit.Dapper.parser;
02:
03: /**
04: * @author Ohad Serfaty
05: *
06: * A Parser exception
07: *
08: */
09: public class ParserException extends Exception {
10:
11: private static final long serialVersionUID = 3194008556698920289L;
12:
13: public ParserException(String string) {
14: super (string);
15: }
16:
17: public ParserException(Throwable e) {
18: super(e);
19: }
20:
21: }
|