123456789_123456789_123456789_123456789_123456789_

Class: Mongo::Error::FileNotFound

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, Error
Instance Chain:
self, Error
Inherits: Error
  • Object
Defined in: lib/mongo/error/file_not_found.rb

Overview

Raised if a file is deleted from a GridFS but it is not found.

Since:

  • 2.1.0

Class Method Summary

Constructor Details

.new(value, property) ⇒ FileNotFound

Create the new exception.

Examples:

Create the new exception.

Mongo::Error::FileNotFound.new(id, :id)

Parameters:

  • value (Object)

    The property value used to find the file.

  • property (String, Symbol)

    The name of the property used to find the file.

Since:

  • 2.1.0

[ GitHub ]

  
# File 'lib/mongo/error/file_not_found.rb', line 32

def initialize(value, property)
  super("File with #{property} '#{value}' not found.")
end