class DispatchRider::NotRegistered

The error class for keys not registered in a registrar

Public Class Methods

new(name) click to toggle source
Calls superclass method
# File lib/dispatch-rider/errors.rb, line 18
def initialize(name)
  super("#{name.to_s} has not been registered")
end