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