| 84 | } |
| 85 | |
| 86 | public static class ReaderException extends RuntimeException{ |
| 87 | final int line; |
| 88 | final int column; |
| 89 | |
| 90 | public ReaderException(int line, int column, Throwable cause){ |
| 91 | super(cause); |
| 92 | this.line = line; |
| 93 | this.column = column; |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | static public int read1(Reader r){ |
| 98 | try |
nothing calls this directly
no outgoing calls
no test coverage detected