Creates an exception which includes the current state in the error message @param s The error message to include. @return The exception to be thrown
(String s)
| 706 | * @return The exception to be thrown |
| 707 | */ |
| 708 | public TextParseException |
| 709 | exception(String s) { |
| 710 | return new TokenizerException(filename, line, s); |
| 711 | } |
| 712 | |
| 713 | /** |
| 714 | * Closes any files opened by this tokenizer. |
no outgoing calls
no test coverage detected