Exception: Puppet::ModuleTool::Errors::InvalidPathInPackageError Private
- Inherits:
-
InstallError
- Object
- RuntimeError
- Error
- ModuleToolError
- InstallError
- Puppet::ModuleTool::Errors::InvalidPathInPackageError
- Defined in:
- lib/puppet/module_tool/errors/installer.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Attribute Summary
Attributes inherited from Error
Instance Method Summary collapse
-
#initialize(options) ⇒ InvalidPathInPackageError
constructor
private
A new instance of InvalidPathInPackageError.
- #multiline ⇒ Object private
Methods inherited from ModuleToolError
Constructor Details
#initialize(options) ⇒ InvalidPathInPackageError
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of InvalidPathInPackageError.
81 82 83 84 85 |
# File 'lib/puppet/module_tool/errors/installer.rb', line 81 def initialize() @entry_path = [:entry_path] @directory = [: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
#multiline ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
87 88 89 90 91 92 |
# File 'lib/puppet/module_tool/errors/installer.rb', line 87 def multiline = [] << _('Could not install package with an invalid path.') << _(' Package attempted to install file into %{path} under %{directory}.') % { path: @entry_path.inspect, directory: @directory.inspect } .join("\n") end |