class DispatchRider::AdapterNotFoundError
This error is raised when a queue service depends on an external library, but that is not present
Public Class Methods
new(lib_name, gem_name)
click to toggle source
Calls superclass method
# File lib/dispatch-rider/errors.rb, line 25 def initialize(lib_name, gem_name) super("Constant #{lib_name} wasn't found. Please install the #{gem_name} gem") end