class Denv::InvalidKeyNameError

Public Class Methods

new(line, filename, lineno) click to toggle source
Calls superclass method
# File lib/denv.rb, line 20
def initialize(line, filename, lineno)
  super("key can not contain whitespaces: #{filename}:#{lineno}: #{line}")
end