package kernel.exception; public class BadSyntaxException extends Exception { public BadSyntaxException() { super(); } public BadSyntaxException(String message) { super(message); } public BadSyntaxException(Throwable throwable) { super(throwable); } public BadSyntaxException(String message, Throwable throwable) { super(message, throwable); } }