PreScriptException.java 357 B

123456789101112131415
  1. package me.hammerle.snuviscript.exceptions;
  2. public class PreScriptException extends RuntimeException {
  3. private static final long serialVersionUID = 1L;
  4. private final int line;
  5. public PreScriptException(String message, int line) {
  6. super(message);
  7. this.line = line;
  8. }
  9. public int getLine() {
  10. return line;
  11. }
  12. }