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.
187 188 189 |
# File 'lib/fox/error/errors.rb', line 187 def initialize(original) @original = original end |
Instance Method Details
#to_s ⇒ Object
191 192 193 194 |
# File 'lib/fox/error/errors.rb', line 191 def to_s "Error reading the Fox lockfile:\n\n" \ " #{@original.class}: #{@original.}" end |