Exception: EnumStateMachine::IntegrationNotFound

Inherits:
Error
  • Object
show all
Defined in:
lib/enum_state_machine/integrations.rb

Overview

An invalid integration was specified

Instance Attribute Summary

Attributes inherited from Error

#object

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ IntegrationNotFound

Returns a new instance of IntegrationNotFound.



12
13
14
# File 'lib/enum_state_machine/integrations.rb', line 12

def initialize(name)
  super(nil, "#{name.inspect} is an invalid integration")
end