Exception: Mongo::Error::InvalidFile
- Inherits:
-
Mongo::Error
- Object
- StandardError
- Mongo::Error
- Mongo::Error::InvalidFile
- Defined in:
- lib/mongo/error/invalid_file.rb
Overview
Raised if the file md5 and server md5 do not match when acknowledging GridFS writes.
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(client_md5, server_md5) ⇒ InvalidFile
constructor
Create the new exception.
Constructor Details
#initialize(client_md5, server_md5) ⇒ InvalidFile
Create the new exception.
33 34 35 |
# File 'lib/mongo/error/invalid_file.rb', line 33 def initialize(client_md5, server_md5) super("File MD5 on client side is #{client_md5} but the server reported #{server_md5}.") end |