exo6: add constructor and some sanity checks to Chiffre and Variable
[Project_POO.git] / exo6 / NotCharacterException.java
diff --git a/exo6/NotCharacterException.java b/exo6/NotCharacterException.java
new file mode 100644 (file)
index 0000000..1f9b80c
--- /dev/null
@@ -0,0 +1,24 @@
+
+public class NotCharacterException extends Exception {
+
+    public NotCharacterException() {
+        super();
+        // TODO Auto-generated constructor stub
+    }
+
+    public NotCharacterException(String message) {
+        super(message);
+        // TODO Auto-generated constructor stub
+    }
+
+    public NotCharacterException(Throwable cause) {
+        super(cause);
+        // TODO Auto-generated constructor stub
+    }
+
+    public NotCharacterException(String message, Throwable cause) {
+        super(message, cause);
+        // TODO Auto-generated constructor stub
+    }
+
+}