01: package com.dappit.Dapper.parser;
02:
03: /**
04: *
05: */
06:
07: /**
08: * @author Ohad Serfaty
09: *
10: * An exception thrown for initialization problems.
11: *
12: */
13: public class ParserInitializationException extends ParserException {
14:
15: private static final long serialVersionUID = -4149559558547113570L;
16:
17: public ParserInitializationException(String string) {
18: super (string);
19: }
20:
21: public ParserInitializationException(Throwable e) {
22: super(e);
23: }
24:
25: }
|