From fed70f3ac817ed4943a230cb901fcd65dc6fdd0c Mon Sep 17 00:00:00 2001 From: Maƫl Gassmann Date: Fri, 11 Jun 2021 20:55:12 +0200 Subject: [~] First totaly functional Calculator, reorganised the files, verified and added error messages --- calculator-java/src/main/java/ch/bfh/exceptions/LexerException.java | 5 ----- calculator-java/src/main/java/ch/bfh/exceptions/ParserException.java | 5 ----- 2 files changed, 10 deletions(-) delete mode 100644 calculator-java/src/main/java/ch/bfh/exceptions/LexerException.java delete mode 100644 calculator-java/src/main/java/ch/bfh/exceptions/ParserException.java (limited to 'calculator-java/src/main/java/ch/bfh/exceptions') 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 -- cgit v1.2.3