Exception: Mongo::Error::FileNotFound
- Inherits:
-
Mongo::Error
- Object
- StandardError
- Mongo::Error
- Mongo::Error::FileNotFound
- Defined in:
- lib/mongo/error/file_not_found.rb
Overview
Raised if a file is deleted from a GridFS but it is not found.
Constant Summary
Constants inherited from Mongo::Error
BAD_VALUE, CODE, ERR, ERRMSG, ERROR, UNKNOWN_ERROR, WRITE_CONCERN_ERROR, WRITE_CONCERN_ERRORS, WRITE_ERRORS
Instance Method Summary collapse
-
#initialize(value, property) ⇒ FileNotFound
constructor
Create the new exception.
Constructor Details
#initialize(value, property) ⇒ FileNotFound
Create the new exception.
32 33 34 |
# File 'lib/mongo/error/file_not_found.rb', line 32 def initialize(value, property) super("File with #{property} '#{value}' not found.") end |