Exception: Realm::CannotHandleAction

Inherits:
Error
  • Object
show all
Defined in:
lib/realm/error.rb

Instance Method Summary collapse

Methods inherited from Error

[]

Constructor Details

#initialize(handler, action, msg: "#{handler} cannot handle action '#{action}'") ⇒ CannotHandleAction

Returns a new instance of CannotHandleAction.



27
28
29
# File 'lib/realm/error.rb', line 27

def initialize(handler, action, msg: "#{handler} cannot handle action '#{action}'")
  super(msg)
end