This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
Gestus/src/main/java/com/thebrokenrail/gestus/emote/exception/EmoteSyntaxException.java

8 lines
217 B
Java
Raw Normal View History

2020-08-11 21:00:26 +00:00
package com.thebrokenrail.gestus.emote.exception;
public class EmoteSyntaxException extends Exception {
public EmoteSyntaxException(int lineNum, String message) {
super(lineNum + ": " + message);
}
}