1 package net.sf.layoutParser.processor;
2
3 import net.sf.layoutParser.exception.ExceptionKey;
4
5
6
7
8
9
10
11 public class MalformedOutputException extends LayoutException {
12
13 private static final long serialVersionUID = -2352123780761635679L;
14
15
16
17
18 public MalformedOutputException() {
19 super();
20 }
21
22
23
24
25
26
27 public MalformedOutputException(ExceptionKey key) {
28 super(key);
29 }
30
31
32
33
34
35
36 public MalformedOutputException(ExceptionKey key, Object[] parameters) {
37 super(key, parameters);
38 }
39
40 public MalformedOutputException(ExceptionKey key, Object[] parameters, Throwable cause) {
41 super(key, parameters, cause);
42 }
43
44
45
46
47
48
49
50
51 public MalformedOutputException(ExceptionKey key, Throwable cause) {
52 super(key, cause);
53 }
54
55
56
57
58
59
60 public MalformedOutputException(Throwable cause) {
61 super(cause);
62 }
63 }