exo6: add the full implementation.
[Project_POO.git] / exo6 / NotDigitException.java
1
2 public class NotDigitException extends Exception {
3
4 public NotDigitException() {
5 super();
6 // TODO Auto-generated constructor stub
7 }
8
9 public NotDigitException(String message) {
10 super(message);
11 // TODO Auto-generated constructor stub
12 }
13
14 public NotDigitException(Throwable cause) {
15 super(cause);
16 // TODO Auto-generated constructor stub
17 }
18
19 public NotDigitException(String message, Throwable cause) {
20 super(message, cause);
21 // TODO Auto-generated constructor stub
22 }
23
24 }