Class: Mongo::Error::InvalidApplicationName

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

Overview

This exception is raised when the metadata document sent to the server at the time of a connection handshake is invalid.

Since:

  • 2.4.0

Instance Method Summary collapse

Constructor Details

#initialize(app_name, max_size) ⇒ InvalidApplicationName

Instantiate the new exception.

Examples:

Create the exception.

InvalidApplicationName.new(app_name, 128)

Parameters:

  • app_name (String)

    The application name option.

  • max_size (Integer)

    The max byte size of the application name.

Since:

  • 2.4.0



33
34
35
# File 'lib/mongo/error/invalid_application_name.rb', line 33

def initialize(app_name, max_size)
  super("The provided application name '#{app_name}' cannot exceed #{max_size} bytes.")
end