Skip to content
Snippets Groups Projects

advanced the project structure & implemented the lexer test class

Merged Dominic Daniel Krämer requested to merge dominicsbranch into main
12 files
+ 138
22
Compare changes
  • Side-by-side
  • Inline
Files
12
+ 7
0
 
package Exceptions;
 
 
public class LexerException extends Exception {
 
public LexerException(String message) {
 
super(message);
 
}
 
}
Loading