Exception: Fig::ConfigFileError

Inherits:
UserInputError show all
Defined in:
lib/fig/configfileerror.rb

Overview

Could not determine some kind of information from a configuration file, whether .figrc, log4r, package.fig, etc.

Instance Method Summary collapse

Constructor Details

#initialize(message, file) ⇒ ConfigFileError

Returns a new instance of ConfigFileError.



7
8
9
10
11
12
13
# File 'lib/fig/configfileerror.rb', line 7

def initialize(message, file)
  super(message)

  @file = file

  return
end