Exception: Terradactyl::Terraform::VersionManager::InventoryError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/terradactyl/terraform/version_manager/inventory.rb

Instance Method Summary collapse

Constructor Details

#initialize(msg, version) ⇒ InventoryError

Returns a new instance of InventoryError.



7
8
9
10
11
# File 'lib/terradactyl/terraform/version_manager/inventory.rb', line 7

def initialize(msg, version)
  @version = version
  err_fmt  = "#{msg} -- version: %s"
  super(err_fmt % @version)
end