Skip to content

Commit

Permalink
Merge pull request #39 from jglick/diag-JENKINS-26024
Browse files Browse the repository at this point in the history
[JENKINS-26024] Display a more informative error message
  • Loading branch information
GLundh committed Sep 29, 2017
2 parents e0c296e + c6e6c78 commit bf41e54
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 bf41e54

Please sign in to comment.