Class: Mongo::Error::MissingFileChunk

Inherits:
Error
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(expected_n, chunk) ⇒ MissingFileChunk

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

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



35
36
37
38
39
40
41
# 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