class Aruba::EventBus::NameResolver::FailingResolver

@private Default failing resolver

This comes into play if the user passes an invalid event type

Public Class Methods

match?(event_id) click to toggle source
# File lib/aruba/event_bus/name_resolver.rb, line 121
def match?(event_id)
  raise ArgumentError,
        %(Input type "#{event_id.class}" of event_id "#{event_id}" is invalid)
end
supports() click to toggle source
# File lib/aruba/event_bus/name_resolver.rb, line 126
def supports
  []
end