Exception: Fox::LockfileParserError
- Defined in:
- lib/fox/error/errors.rb
Instance Method Summary collapse
-
#initialize(original) ⇒ LockfileParserError
constructor
A new instance of LockfileParserError.
- #to_s ⇒ Object
Methods inherited from FoxError
Constructor Details
#initialize(original) ⇒ LockfileParserError
Returns a new instance of LockfileParserError.
186 187 188 |
# File 'lib/fox/error/errors.rb', line 186 def initialize(original) @original = original end |
Instance Method Details
#to_s ⇒ Object
190 191 192 193 |
# File 'lib/fox/error/errors.rb', line 190 def to_s "Error reading the Fox lockfile:\n\n" \ " #{@original.class}: #{@original.}" end |