Class: Mongo::Error::MissingFileChunk
| Relationships & Source Files | |
| Super Chains via Extension / Inclusion / Inheritance | |
|
Class Chain:
self,
Error
|
|
|
Instance Chain:
self,
Error
|
|
| Inherits: |
Error
|
| Defined in: | lib/mongo/error/missing_file_chunk.rb |
Overview
Raised if the next chunk when reading from a GridFSBucket does not have the expected sequence number (n).
Class Method Summary
-
.new(expected_n, chunk) ⇒ MissingFileChunk
constructor
Internal use only
Create the new exception.
Constructor Details
.new(expected_n, chunk) ⇒ MissingFileChunk
Create the new exception.
# File 'lib/mongo/error/missing_file_chunk.rb', line 35
def initialize(expected_n, chunk) if chunk.is_a?(Integer) super("Missing chunk(s). Expected #{expected_n} chunks but got #{chunk}.") else super("Unexpected chunk in sequence. Expected next chunk to have index #{expected_n} but it has index #{chunk.n}") end end