Is it possible to define error code in XML file(Camunda Modeler)?

Is it possible to define error code in XML file(Camunda Modeler)? We have a simple process where we want to invoke a boundary error. Can this be done in the Camunda Modeler? Please see the screenshot below.

Hi @Haminou_M,

it is possible to define an error code in the XML file via the Camunda Modeler. The screenshot shows the right part of the Properties Panel.

You can find more details to error code in our documentation:
https://docs.camunda.org/manual/7.7/reference/bpmn20/events/error-events/#defining-an-error

Cheers
kristin

1 Like

@Haminou_M your Error Code Value needs to be a actual value / string, and throw the business error with that error code. take a look at: https://medium.com/@stephenrussett/throwing-bpmn-errors-with-javascript-in-camunda-c678f4b7d9ff

1 Like

Thanks this helped a lot! Is it possible to do same without a script task beforehand like described in medium post? Similar to the error code marked in my initial post.

You have to throw the error code: so either that is with a script/or delegate somewhere(could be on a listener) or as a end event.