123456789_123456789_123456789_123456789_123456789_

Class: Mongo::Error::InvalidApplicationName

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, Error
Instance Chain:
self, Error
Inherits: Error
  • Object
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

Class Method Summary

Constructor Details

.new(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

[ GitHub ]

  
# 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