class Chef::ChefFS::FileSystem::FileSystemError
Attributes
The wrapped exception (if any).
The entry which had an issue.
A string describing why this exception happened.
Public Class Methods
Source
# 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
@param entry The entry which had an issue. @param cause The wrapped exception (if any). @param reason A string describing why this exception happened.
Calls superclass method