blob: efa3d543c7d8c03df7c03cb3718034e6acf43745 (
plain)
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
|
package bjc.dicelang.neodice;
public class DieBoxException extends RuntimeException {
private static final long serialVersionUID = 1851356458656622896L;
public DieBoxException() {
super();
}
public DieBoxException(String message) {
super(message);
}
public DieBoxException(String format, Object... args) {
super(String.format(format, args));
}
public DieBoxException(Throwable cause) {
super(cause);
}
public DieBoxException(Throwable cause, String message) {
super(message, cause);
}
public DieBoxException(Throwable cause, String format, Object... args) {
super(String.format(format, args), cause);
}
}
|