Exception: Puppet::ModuleTool::Errors::InvalidPathInPackageError

Inherits:
InstallError show all
Defined in:
lib/puppet/module_tool/errors/installer.rb

Instance Attribute Summary

Attributes inherited from Error

#original

Instance Method Summary collapse

Methods inherited from ModuleToolError

#v, #vstring

Constructor Details

#initialize(options) ⇒ InvalidPathInPackageError

Returns a new instance of InvalidPathInPackageError.



81
82
83
84
85
# File 'lib/puppet/module_tool/errors/installer.rb', line 81

def initialize(options)
  @entry_path = options[:entry_path]
  @directory  = options[:directory]
  super _("Attempt to install file with an invalid path into %{path} under %{dir}") % { path: @entry_path.inspect, dir: @directory.inspect }
end

Instance Method Details

#multilineObject



87
88
89
90
91
92
93
# File 'lib/puppet/module_tool/errors/installer.rb', line 87

def multiline
  _(<<-MSG).strip % { path: @entry_path.inspect, dir: @directory.inspect }
Could not install package with an invalid path.
  Package attempted to install file into
  %{path} under %{dir}.
  MSG
end