Skip to content

Commit

Permalink
[JENKINS-26024] Display a more informative error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
jglick committed May 24, 2016
1 parent 6d23d63 commit c6e6c78
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -47,7 +47,7 @@ public abstract class RebuildValidator implements Serializable, ExtensionPoint {
if (Util.isOverridden(RebuildValidator.class, getClass(), "isApplicable", AbstractBuild.class) && build instanceof AbstractBuild) {
return isApplicable((AbstractBuild) build);
} else {
throw new AbstractMethodError("you must override the new overload of isApplicable");
throw new AbstractMethodError("you must override the new overload of isApplicable in " + getClass().getName());
}
}

Expand Down

0 comments on commit c6e6c78

Please sign in to comment.