123456789_123456789_123456789_123456789_123456789_

Class: Mongo::Error::InvalidURI

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_uri.rb

Overview

Exception that is raised when trying to parse a ::Mongo::URI that does not match the specification.

Since:

  • 2.0.0

Class Method Summary

Constructor Details

.new(uri, details, format = nil) ⇒ InvalidURI

Instantiate the new exception.

Examples:

Instantiate the exception.

Mongo::Error::InvalidURI.new(uri, details, format)

Since:

  • 2.0.0

[ GitHub ]

  
# File 'lib/mongo/error/invalid_uri.rb', line 30

def initialize(uri, details, format = nil)
  message = "Bad URI: #{uri}\n" +
            "#{details}\n"
  message += "MongoDB URI must be in the following format: #{format}\n" if format
  message += "Please see the following URL for more information: #{Mongo::URI::HELP}\n"
  super(message)
end