class Camunda::BpmnError

Error when BPMN process cannot be deployed.

Attributes

error_code[R]

Camunda BPMN error code @return [String]

variables[R]

variables to send to Camunda along with the error @return [Hash]

Public Class Methods

new(message:, error_code:, variables: {}) click to toggle source

@param message [String] @param error_code [String] @param variables [Hash]

Calls superclass method
# File lib/camunda.rb, line 69
def initialize(message:, error_code:, variables: {})
  super(message)
  @error_code = error_code
  @variables = variables
end