IllegalOperationException.java
841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/**
*
*/
package jp.agentec.sinaburocast.common.exception;
/**
* 許可されていないor不正なリクエストによるエラー
* @author arima
*/
public class IllegalOperationException extends ExpectedException {
private static final long serialVersionUID = -5476512858985946838L;
/**
* @param message
* @param code
*/
public IllegalOperationException(String message, String code) {
super(message, code);
}
/**
* @param objects
*/
public IllegalOperationException(Object... objects) {
super(objects);
}
/**
* @param message
* @param objects
*/
public IllegalOperationException(String message, Object... objects) {
super(message, objects);
}
/**
* @param cause
* @param objects
*/
public IllegalOperationException(Throwable cause, Object... objects) {
super(cause, objects);
}
}