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