Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
RethrowingFailure |
|
| 2.0;2 |
1 | package org.jbehave.core.failures; | |
2 | ||
3 | 394 | public final class RethrowingFailure implements FailureStrategy { |
4 | ||
5 | public void handleFailure(Throwable throwable) throws Throwable { | |
6 | 1 | throw throwable; |
7 | } | |
8 | ||
9 | } |