class Berkshelf::LockfileParserError
Public Class Methods
new(original)
click to toggle source
@param [String] lockfile
the path to the Lockfile
@param [~Exception] original
the original exception class
# File lib/berkshelf/errors.rb, line 411 def initialize(original) @original = original end
Public Instance Methods
to_s()
click to toggle source
# File lib/berkshelf/errors.rb, line 415 def to_s "Error reading the Berkshelf lockfile:\n\n" \ " #{@original.class}: #{@original.message}" end
Also aliased as: message