569570571572573574575576577
int i = 0; try { i = Integer.parseInt(cadena); } catch (NumberFormatException e) { throw new LexicalException("Error al parsear numero"); } return i; }