Method: Chef::ChefFS::FileSystem::FileSystemError#initialize
- Defined in:
- lib/chef/chef_fs/file_system/exceptions.rb
permalink #initialize(entry, cause = nil, reason = nil) ⇒ FileSystemError
Returns a new instance of FileSystemError.
26 27 28 29 30 31 |
# File 'lib/chef/chef_fs/file_system/exceptions.rb', line 26 def initialize(entry, cause = nil, reason = nil) super(reason) @entry = entry @cause = cause @reason = reason end |