Exception: Berkshelf::LicenseNotFound
- Inherits:
-
BerkshelfError
- Object
- StandardError
- BerkshelfError
- Berkshelf::LicenseNotFound
- Defined in:
- lib/berkshelf/errors.rb
Instance Attribute Summary collapse
-
#license ⇒ Object
readonly
Returns the value of attribute license.
Instance Method Summary collapse
-
#initialize(license) ⇒ LicenseNotFound
constructor
A new instance of LicenseNotFound.
- #to_s ⇒ Object
Methods inherited from BerkshelfError
Constructor Details
#initialize(license) ⇒ LicenseNotFound
Returns a new instance of LicenseNotFound.
367 368 369 |
# File 'lib/berkshelf/errors.rb', line 367 def initialize(license) @license = license end |
Instance Attribute Details
#license ⇒ Object (readonly)
Returns the value of attribute license.
365 366 367 |
# File 'lib/berkshelf/errors.rb', line 365 def license @license end |
Instance Method Details
#to_s ⇒ Object
371 372 373 374 |
# File 'lib/berkshelf/errors.rb', line 371 def to_s "Unknown license: '#{license}'\n" + "Available licenses: #{Berkshelf::CookbookGenerator::LICENSES.join(', ')}" end |