Exception: Omnibus::InternalSourceMissing

Inherits:
Error
  • Object
show all
Defined in:
lib/omnibus/exceptions.rb

Instance Method Summary collapse

Constructor Details

#initialize(software) ⇒ InternalSourceMissing

Returns a new instance of InternalSourceMissing.



356
357
358
359
360
361
362
363
# File 'lib/omnibus/exceptions.rb', line 356

def initialize(software)
  super <<~EOH
    Internal source missing for #{software.name}.

    When :use_internal_sources is set in the configuration you must specify an
    internal_source for sources fetched from a url.
  EOH
end