class Golden::Setting::Error::SettingNoMethod

Public Class Methods

new(method, msg = nil) click to toggle source
Calls superclass method
# File lib/golden/setting/error.rb, line 16
def initialize method, msg = nil
  @method = method
  super msg
end

Public Instance Methods

to_s() click to toggle source
# File lib/golden/setting/error.rb, line 21
def to_s
  raise "Please define method '#{@method}' first!"
end