1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
package com.xpn.xwiki.plugin.charts.exceptions; |
21 |
|
|
|
|
| 0% |
Uncovered Elements: 8 (8) |
Complexity: 4 |
Complexity Density: 1 |
|
22 |
|
public class NoHeaderRowException extends DataSourceException |
23 |
|
{ |
24 |
|
private static final long serialVersionUID = -7408003411594764238L; |
25 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
26 |
0 |
public NoHeaderRowException()... |
27 |
|
{ |
28 |
0 |
super(); |
29 |
|
|
30 |
|
} |
31 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
32 |
0 |
public NoHeaderRowException(String arg0)... |
33 |
|
{ |
34 |
0 |
super(arg0); |
35 |
|
|
36 |
|
} |
37 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
38 |
0 |
public NoHeaderRowException(String arg0, Throwable arg1)... |
39 |
|
{ |
40 |
0 |
super(arg0, arg1); |
41 |
|
|
42 |
|
} |
43 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
44 |
0 |
public NoHeaderRowException(Throwable arg0)... |
45 |
|
{ |
46 |
0 |
super(arg0); |
47 |
|
|
48 |
|
} |
49 |
|
} |