class Pharrell::BindingNotFoundError

Public Class Methods

new(klass) click to toggle source
# File lib/pharrell/errors.rb, line 3
def initialize(klass)
  @klass = klass
end

Public Instance Methods

message() click to toggle source
# File lib/pharrell/errors.rb, line 7
def message
  "Binding for #{@klass} could not be found!"
end