Exception: DispatchRider::AdapterNotFoundError

Inherits:
DispatchRiderError show all
Defined in:
lib/dispatch-rider/errors.rb

Overview

This error is raised when a queue service depends on an external library, but that is not present

Instance Method Summary collapse

Constructor Details

#initialize(lib_name, gem_name) ⇒ AdapterNotFoundError

Returns a new instance of AdapterNotFoundError.



23
24
25
# File 'lib/dispatch-rider/errors.rb', line 23

def initialize(lib_name, gem_name)
  super("Constant #{lib_name} wasn't found. Please install the #{gem_name} gem")
end