package interpreter; public class InterpreterException extends RuntimeException { public InterpreterException(String error) { super(error); } }