blob: e7d0d5c3436ad5cad410407038c7af2a6e365483 [file] [log] [blame]
package org.junit.internal.runners.statements;
import org.junit.runners.model.Statement;
public class Fail extends Statement {
private final Throwable fError;
public Fail(Throwable e) {
fError= e;
}
@Override
public void evaluate() throws Throwable {
throw fError;
}
}