class LexerException extends SLException {
  private String msg;

  public LexerException(int line) { 
    msg = "Lexer error: Malformed input on line "+(new Integer(line)).toString();
  }
  
  public String getMessage() { return msg; } 
}

