InvalidXAPIRequestException(Throwable)   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
dl 0
loc 2
rs 10
1
/**
2
 * 
3
 */
4
package unicon.matthews.xapi.exception;
5
6
7
/**
8
 * Exception indicating that a received XAPI request was invalid.
9
 * @author Gary Roybal, [email protected]
10
 */
11
public class InvalidXAPIRequestException extends RuntimeException {
12
13
	private static final long serialVersionUID = 1L;
14
15
	public InvalidXAPIRequestException() {
16
	}
17
18
	public InvalidXAPIRequestException(String message) {
19
		super(message);
20
	}
21
22
	public InvalidXAPIRequestException(Throwable cause) {
23
		super(cause);
24
	}
25
26
	public InvalidXAPIRequestException(String message, Throwable cause) {
27
		super(message, cause);
28
	}
29
30
	public InvalidXAPIRequestException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
31
		super(message, cause, enableSuppression, writableStackTrace);
32
	}
33
34
}
35