aboutsummaryrefslogtreecommitdiff
path: root/calculator-java/src/main/java/ch/bfh/exceptions
diff options
context:
space:
mode:
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