class Rudy::Config::Error

Public Class Methods

new(ctype, obj) click to toggle source
# File lib/rudy/config/objects.rb, line 5
def initialize(ctype, obj)
  @ctype, @obj = ctype, obj
end

Public Instance Methods

message() click to toggle source
# File lib/rudy/config/objects.rb, line 8
def message; "Error in #{@ctype}: #{@obj}"; end