class Omnibus::InsufficientSpecification

Public Class Methods

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

Public Instance Methods

to_s() click to toggle source
# File lib/omnibus/exceptions.rb, line 149
    def to_s
      <<~EOH
        Software must specify a `#{@key}; to cache it in S3 (#{@package})!
      EOH
    end