class Omnibus::NoPackageMetadataFile

Public Class Methods

new(path) click to toggle source
# File lib/omnibus/exceptions.rb, line 35
def initialize(path)
  @path = path
end

Public Instance Methods

to_s() click to toggle source
# File lib/omnibus/exceptions.rb, line 39
    def to_s
      <<~EOH
        Could not locate or access the package metadata file at the given path:

            #{@path}
      EOH
    end