123456789_123456789_123456789_123456789_123456789_

Class: Mongo::Error::MissingFileChunk

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/missing_file_chunk.rb

Overview

Raised if the next chunk when reading from a GridFSBucket does not have the expected sequence number (n).

Since:

  • 2.1.0

Class Method Summary

Constructor Details

.new(expected_n, chunk) ⇒ MissingFileChunk

Create the new exception.

Examples:

Create the new exception.

Mongo::Error::MissingFileChunk.new(expected_n, chunk)

Parameters:

  • expected_n (Integer)

    The expected index value.

  • chunk (Grid::File::Chunk | Integer)

    The chunk read from GridFS.

Since:

  • 2.1.0

[ GitHub ]

  
# 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