blob: d1af8ae7b744b1c8082e49d5b9908f1842487fa6 [file] [log] [blame]
package org.junit.internal.runners.rules;
import org.junit.runners.model.FrameworkMember;
import java.lang.annotation.Annotation;
class ValidationError extends Exception {
public ValidationError(FrameworkMember<?> member, Class<? extends Annotation> annotation, String suffix) {
super(String.format("The @%s '%s' %s", annotation.getSimpleName(), member.getName(), suffix));
}
}