Coverage Report - org.jbehave.core.failures.RethrowingFailure
 
Classes in this File Line Coverage Branch Coverage Complexity
RethrowingFailure
100%
2/2
N/A
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  
 }