Skip to content
Snippets Groups Projects
Commit 8b2ea6b4 authored by mutantoe's avatar mutantoe
Browse files

Merge /home/mutantoe/Stuff/Work/space-cadets

parents 647e6148 8ed1c17b
Branches
No related tags found
No related merge requests found
......@@ -4,23 +4,19 @@ public class IllegalTokenException extends BoringException {
public IllegalTokenException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
public IllegalTokenException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
public IllegalTokenException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
public IllegalTokenException(String message, Throwable cause,
boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
// TODO Auto-generated constructor stub
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment