class Mongo::Error::ExtraFileChunk

Raised if an extra chunk is found.

@since 2.1.0

Public Class Methods

new() click to toggle source

Create the new exception.

@example Create the new exception.

Mongo::Error::ExtraFileChunk.new

@since 2.1.0

Calls superclass method Mongo::Error::new
# File lib/mongo/error/extra_file_chunk.rb, line 29
def initialize
  super("Extra file chunk found.")
end