1 package net.sf.jpkgmk;
2
3 /**
4 * @author gommma (gommma AT users.sourceforge.net)
5 * @author Last changed by: $Author: gommma $
6 * @version $Revision: 2 $ $Date: 2008-08-20 21:14:19 +0200 (Mi, 20 Aug 2008) $
7 * @since 1.0
8 */
9 public class ParseException extends PackageException {
10
11 /**
12 *
13 */
14 private static final long serialVersionUID = 1L;
15
16 /**
17 *
18 */
19 public ParseException() {
20 }
21
22 /**
23 * @param message
24 */
25 public ParseException(String message) {
26 super(message);
27 }
28
29 /**
30 * @param cause
31 */
32 public ParseException(Throwable cause) {
33 super(cause);
34 }
35
36 /**
37 * @param message
38 * @param cause
39 */
40 public ParseException(String message, Throwable cause) {
41 super(message, cause);
42 }
43
44 }