Exception: RailsFlowMap::GraphValidationError

Inherits:
Error
  • Object
show all
Defined in:
lib/rails_flow_map/errors.rb

Overview

Raised when graph validation fails

Instance Attribute Summary

Attributes inherited from Error

#category, #context, #error_code

Instance Method Summary collapse

Methods inherited from Error

#to_h, #to_json

Constructor Details

#initialize(message, context: {}) ⇒ GraphValidationError

Returns a new instance of GraphValidationError.



53
54
55
# File 'lib/rails_flow_map/errors.rb', line 53

def initialize(message, context: {})
  super(message, context: context, category: :validation)
end