Sha256: 70367d3db7f2c05e1705ec1fe43441d4ae7f4d7ea6c480eadb070e39a92b269c

Contents?: true

Size: 296 Bytes

Versions: 2

Compression:

Stored size: 296 Bytes

Contents

module ChefFS
  module FileSystem
    class NotFoundException < Exception
      def initialize(other_exception)
        super(other_exception.respond_to?(:message) ? other_exception.message : message)
        @exception = other_exception
      end

      attr_reader :exception
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
knife-essentials-0.1.1 lib/chef_fs/file_system/not_found_exception.rb
knife-essentials-0.1 lib/chef_fs/file_system/not_found_exception.rb