module Ably::Modules::StateMachine::ClassMethods

Private Instance Methods

is_error_type?(error) click to toggle source
# File lib/submodules/ably-ruby/lib/ably/modules/state_machine.rb, line 54
def is_error_type?(error)
  error.kind_of?(Ably::Models::ErrorInfo) || error.kind_of?(StandardError)
end