Stores an exception so that any operation on the given key will cause it to be thrown. @param key The key to go pear shaped on @param exception The exception to throw
(final byte[] key, final RuntimeException exception)
| 357 | * @param exception The exception to throw |
| 358 | */ |
| 359 | public void throwException(final byte[] key, final RuntimeException exception) { |
| 360 | throwException(key, exception, true); |
| 361 | } |
| 362 | |
| 363 | /** |
| 364 | * Stores an exception so that any operation on the given key will cause it |
no test coverage detected