Skip to content
Snippets Groups Projects

advanced the project structure & implemented the lexer test class

12 files
+ 138
22
Compare changes
  • Side-by-side
  • Inline

Files

 
package Exceptions;
 
 
public class LexerException extends Exception {
 
public LexerException(String message) {
 
super(message);
 
}
 
}
Loading