Class: Mongo::Error::InvalidDatabaseName

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

Overview

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

Since:

  • 2.0.0

Constant Summary collapse

MESSAGE =

The message is constant.

Since:

  • 2.0.0

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

Instance Method Summary collapse

Constructor Details

#initializeInvalidDatabaseName

Instantiate the new exception.

Examples:

Instantiate the exception.

Mongo::Error::InvalidDatabaseName.new

Since:

  • 2.0.0



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

def initialize
  super(MESSAGE)
end