Class: Mongo::Error::InvalidCollectionName

Inherits:
Error
  • Object
show all
Defined in:
lib/mongo/error/invalid_collection_name.rb

Overview

Exception that is raised when trying to create a collection with no name.

Since:

  • 2.0.0

Constant Summary collapse

MESSAGE =

The message is constant.

Since:

  • 2.0.0

'nil is an invalid collection name. Please provide a string or symbol.'

Instance Method Summary collapse

Constructor Details

#initializeInvalidCollectionName

Instantiate the new exception.

Examples:

Instantiate the exception.

Mongo::Collection::InvalidName.new

Since:

  • 2.0.0



34
35
36
# File 'lib/mongo/error/invalid_collection_name.rb', line 34

def initialize
  super(MESSAGE)
end