(String message)
| 125 | } |
| 126 | |
| 127 | private void fail(String message) throws IOException { |
| 128 | try { |
| 129 | close(); |
| 130 | } catch (IOException ex) { |
| 131 | /* Ignore */ |
| 132 | } |
| 133 | throw new IOException(message); |
| 134 | } |
| 135 | |
| 136 | public void attachDictionary(PreparedDictionary dictionary) throws IOException { |
| 137 | if (!encoder.attachDictionary(dictionary.getData())) { |
no test coverage detected