Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
PendingStepFound |
|
| 1.0;1 |
1 | package org.jbehave.core.failures; | |
2 | ||
3 | /** | |
4 | * Thrown when a pending step is found | |
5 | */ | |
6 | @SuppressWarnings("serial") | |
7 | public class PendingStepFound extends RuntimeException { | |
8 | ||
9 | public PendingStepFound(String step) { | |
10 | 13 | super(step); |
11 | 13 | } |
12 | ||
13 | } |