exo6: add the full implementation.
[Project_POO.git] / exo6 / NotDigitException.java
diff --git a/exo6/NotDigitException.java b/exo6/NotDigitException.java
new file mode 100644 (file)
index 0000000..0cd91fd
--- /dev/null
@@ -0,0 +1,24 @@
+
+public class NotDigitException extends Exception {
+
+    public NotDigitException() {
+        super();
+        // TODO Auto-generated constructor stub
+    }
+
+    public NotDigitException(String message) {
+        super(message);
+        // TODO Auto-generated constructor stub
+    }
+
+    public NotDigitException(Throwable cause) {
+        super(cause);
+        // TODO Auto-generated constructor stub
+    }
+
+    public NotDigitException(String message, Throwable cause) {
+        super(message, cause);
+        // TODO Auto-generated constructor stub
+    }
+
+}