Exception: Omnibus::InsufficientSpecification
- Defined in:
- lib/omnibus/exceptions.rb
Instance Method Summary collapse
-
#initialize(key, package) ⇒ InsufficientSpecification
constructor
A new instance of InsufficientSpecification.
- #to_s ⇒ Object
Constructor Details
#initialize(key, package) ⇒ InsufficientSpecification
Returns a new instance of InsufficientSpecification.
145 146 147 |
# File 'lib/omnibus/exceptions.rb', line 145 def initialize(key, package) @key, @package = key, package end |
Instance Method Details
#to_s ⇒ Object
149 150 151 152 153 |
# File 'lib/omnibus/exceptions.rb', line 149 def to_s <<~EOH Software must specify a `#{@key}; to cache it in S3 (#{@package})! EOH end |