class Denv::InvalidFormatError

Public Class Methods

new(line, filename, lineno) click to toggle source
Calls superclass method
# File lib/denv.rb, line 14
def initialize(line, filename, lineno)
  super("key and value must be separated by `=`: #{filename}:#{lineno}: #{line}")
end