exo6: add the full implementation.
[Project_POO.git] / exo6 / Expression.java
index dc8a85587212b2ed1715b17a9249b297b7ce29ef..22296ab2e26592bdcdfc457f4ff6a69f66125169 100644 (file)
@@ -1,5 +1,5 @@
 
 public abstract class Expression {
 
-    abstract double evaluer();
+    abstract double evaluer() throws NotDigitException;
 }