Coverage Report - org.jbehave.core.failures.RestartingStoryFailure
 
Classes in this File Line Coverage Branch Coverage Complexity
RestartingStoryFailure
50%
2/4
N/A
1
 
 1  
 package org.jbehave.core.failures;
 2  
 
 3  
 /**
 4  
  * Runtime exception thrown to indicate that the story should be restarted.
 5  
  */
 6  
 @SuppressWarnings("serial")
 7  
 public class RestartingStoryFailure extends RuntimeException {
 8  
     
 9  
     public RestartingStoryFailure(String message) {
 10  13
         super(message);
 11  13
     }
 12  
 
 13  
     public RestartingStoryFailure(String message, Throwable cause) {
 14  0
         super(message, cause);
 15  0
     }
 16  
 
 17  
 }