Exception: Fig::ConfigFileError
- Inherits:
-
UserInputError
- Object
- StandardError
- UserInputError
- Fig::ConfigFileError
- Defined in:
- lib/fig/config_file_error.rb
Overview
Could not determine some kind of information from a configuration file, whether .figrc, log4r, package.fig, etc.
Instance Attribute Summary collapse
-
#file ⇒ Object
readonly
Returns the value of attribute file.
Instance Method Summary collapse
-
#initialize(message, file) ⇒ ConfigFileError
constructor
A new instance of ConfigFileError.
Constructor Details
#initialize(message, file) ⇒ ConfigFileError
Returns a new instance of ConfigFileError.
11 12 13 14 15 16 17 |
# File 'lib/fig/config_file_error.rb', line 11 def initialize(, file) super() @file = file return end |
Instance Attribute Details
#file ⇒ Object (readonly)
Returns the value of attribute file.
9 10 11 |
# File 'lib/fig/config_file_error.rb', line 9 def file @file end |