1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
package org.xwiki.rendering.wikimodel; |
21 |
|
|
22 |
|
|
23 |
|
|
24 |
|
|
25 |
|
@version |
26 |
|
@since |
27 |
|
|
|
|
| 0% |
Uncovered Elements: 8 (8) |
Complexity: 4 |
Complexity Density: 1 |
|
28 |
|
public class WikiParserException extends Exception |
29 |
|
{ |
30 |
|
|
31 |
|
|
32 |
|
|
33 |
|
private static final long serialVersionUID = -4472747025921827543L; |
34 |
|
|
35 |
|
|
36 |
|
|
37 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
38 |
0
|
public WikiParserException()... |
39 |
|
{ |
40 |
0
|
super(); |
41 |
|
} |
42 |
|
|
43 |
|
|
44 |
|
@param |
45 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
46 |
0
|
public WikiParserException(String message)... |
47 |
|
{ |
48 |
0
|
super(message); |
49 |
|
} |
50 |
|
|
51 |
|
|
52 |
|
@param |
53 |
|
@param |
54 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
55 |
0
|
public WikiParserException(String message, Throwable cause)... |
56 |
|
{ |
57 |
0
|
super(message, cause); |
58 |
|
} |
59 |
|
|
60 |
|
|
61 |
|
@param |
62 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
63 |
0
|
public WikiParserException(Throwable cause)... |
64 |
|
{ |
65 |
0
|
super(cause); |
66 |
|
} |
67 |
|
} |