| 1234567891011121314151617181920212223242526272829 | [[fail-processor]]=== Fail processor++++<titleabbrev>Fail</titleabbrev>++++Raises an exception. This is useful for whenyou expect a pipeline to fail and want to relay a specific messageto the requester.[[fail-options]].Fail Options[options="header"]|======| Name       | Required  | Default  | Description| `message`  | yes       | -        | The error message thrown by the processor. Supports <<template-snippets,template snippets>>.include::common-options.asciidoc[]|======[source,js]--------------------------------------------------{  "fail": {    "if" : "ctx.tags.contains('production') != true",    "message": "The production tag is not present, found tags: {{tags}}"  }}--------------------------------------------------// NOTCONSOLE
 |