Пример #1
0
 protected void error(int line, int column, String msg) throws LexerException {
   if (listener != null) listener.handleError(this, line, column, msg);
   else throw new LexerException("Error at " + line + ":" + column + ": " + msg);
 }