class GeneValidatorApp::CONFIG_FILE_ERROR

Error in config file.

Attributes

ent[R]
err[R]

Public Class Methods

new(ent, err) click to toggle source
# File lib/genevalidatorapp/exceptions.rb, line 17
def initialize(ent, err)
  @ent = ent
  @err = err
end

Public Instance Methods

to_s() click to toggle source
# File lib/genevalidatorapp/exceptions.rb, line 24
    def to_s
      <<MSG
Error reading config file: #{ent}.
#{err}
MSG
    end