class Omnibus::NoPackageFile
Public Class Methods
new(path)
click to toggle source
# File lib/omnibus/exceptions.rb, line 21 def initialize(path) @path = path end
Public Instance Methods
to_s()
click to toggle source
# File lib/omnibus/exceptions.rb, line 25 def to_s <<~EOH Could not locate or access the package at the given path: #{@path} EOH end