blob: bdbaf81127866f89eb462f996045e350fa2cbb86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
public class MathsException extends Exception {
public MathsException() {
// TODO Auto-generated constructor stub
}
public MathsException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
public MathsException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
public MathsException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
}
|