aboutsummaryrefslogtreecommitdiff
path: root/src/batchtools/headless/src/test/resources/ruleSets/makeError.js
blob: d1705d394f5490f08f6c433c4a58aa91ec349a34 (plain)
1
2
3
4
5
6
exports.name = "Generate Errors";
exports.description = "Always report an error";
exports.rule = function() {
  var r = this;
  r.report("error", null);
};