class TomlRB::ValueOverwriteError
Overwrite error
Attributes
key[RW]
Public Class Methods
new(key)
click to toggle source
Calls superclass method
# File lib/toml-rb/errors.rb, line 12 def initialize(key) @key = key super "Key #{key.inspect} is defined more than once" end