aboutsummaryrefslogtreecommitdiff
path: root/calculator-java/src/main/java/ch/bfh/exceptions
diff options
context:
space:
mode:
authorMaël Gassmann <mael.gassmann@students.bfh.ch>2021-06-11 20:55:12 +0200
committerMaël Gassmann <mael.gassmann@students.bfh.ch>2021-06-11 20:55:12 +0200
commitfed70f3ac817ed4943a230cb901fcd65dc6fdd0c (patch)
treeaea4de81656c677d33e4af6eb11375303d1dfdda /calculator-java/src/main/java/ch/bfh/exceptions
parent3baa44f1c8459713a96f4db994ee9905cc4e8df1 (diff)
[~] First totaly functional Calculator, reorganised the files, verified and added error messages
Diffstat (limited to 'calculator-java/src/main/java/ch/bfh/exceptions')
-rw-r--r--calculator-java/src/main/java/ch/bfh/exceptions/LexerException.java5
-rw-r--r--calculator-java/src/main/java/ch/bfh/exceptions/ParserException.java5
2 files changed, 0 insertions, 10 deletions
diff --git a/calculator-java/src/main/java/ch/bfh/exceptions/LexerException.java b/calculator-java/src/main/java/ch/bfh/exceptions/LexerException.java
deleted file mode 100644
index 082beee..0000000
--- a/calculator-java/src/main/java/ch/bfh/exceptions/LexerException.java
+++ /dev/null
@@ -1,5 +0,0 @@
-package ch.bfh.exceptions;
-
-public class LexerException extends RuntimeException {
- public LexerException(String s) { super(s); }
-} \ No newline at end of file
diff --git a/calculator-java/src/main/java/ch/bfh/exceptions/ParserException.java b/calculator-java/src/main/java/ch/bfh/exceptions/ParserException.java
deleted file mode 100644
index ca6d037..0000000
--- a/calculator-java/src/main/java/ch/bfh/exceptions/ParserException.java
+++ /dev/null
@@ -1,5 +0,0 @@
-package ch.bfh.exceptions;
-
-public class ParserException extends RuntimeException {
- public ParserException(String s) { super(s); }
-} \ No newline at end of file