lib/toml-rb/errors.rb
module TomlRB # Parent class for all TomlRB errors Error = Class.new(StandardError) # Error related to parsing. ParseError = Class.new(Error) # Overwrite error class ValueOverwriteError < Error attr_accessor :key def initialize(key) @key = key super "Key #{key.inspect} is defined more than once" end end end