com.tngtech.jgiven.exception.FailIfPassedException Maven / Gradle / Ivy
package com.tngtech.jgiven.exception;
/**
* @see com.tngtech.jgiven.annotation.Pending
*/
public class FailIfPassedException extends RuntimeException {
private static final long serialVersionUID = 1L;
public FailIfPassedException() {
super( "Test succeeded, but failIfPassed set to true. Now might be the right time to remove the @Pending annotation." );
}
}