Sha256: 575c3850547e846301e1aeff9182e11cc07072e5364a1bc84559799636e9ef3a

Contents?: true

Size: 201 Bytes

Versions: 6

Compression:

Stored size: 201 Bytes

Contents

module Mutaconf

  class Error < StandardError; end

  class KeyError < Error
    attr_reader :key
  
    def initialize key
      super "No such property '#{key}'"
      @key = key
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
mutaconf-0.1.1 lib/mutaconf/errors.rb
mutaconf-0.1.0 lib/mutaconf/errors.rb
mutaconf-0.0.7 lib/mutaconf/errors.rb
mutaconf-0.0.6 lib/mutaconf/errors.rb
mutaconf-0.0.5 lib/mutaconf/errors.rb
mutaconf-0.0.4 lib/mutaconf/errors.rb