Class: Mongo::Error::InvalidFile
| Relationships & Source Files | |
| Super Chains via Extension / Inclusion / Inheritance | |
|
Class Chain:
self,
Error
|
|
|
Instance Chain:
self,
Error
|
|
| Inherits: |
Error
|
| Defined in: | lib/mongo/error/invalid_file.rb |
Overview
Raised if the file md5 and server md5 do not match when acknowledging GridFS writes.
Class Method Summary
-
.new(client_md5, server_md5) ⇒ InvalidFile
constructor
Create the new exception.
Constructor Details
.new(client_md5, server_md5) ⇒ InvalidFile
Create the new exception.
# 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