| 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 UUIDExceptionWrapper { | |
| 8 | ||
| 9 | public PendingStepFound(String step) { | |
| 10 | 27 | super(step); |
| 11 | 27 | } |
| 12 | ||
| 13 | } |