Class: Mongo::Error::MissingPassword

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

Overview

Raised when the operations that require a password (e.g. retrieving a salted or hashed password) are attempted on a User object that was not created with a password.

Since:

  • 2.8.0

Instance Method Summary collapse

Constructor Details

#initialize(msg = nil) ⇒ MissingPassword

Returns a new instance of MissingPassword.

Since:

  • 2.8.0



25
26
27
# File 'lib/mongo/error/missing_password.rb', line 25

def initialize(msg = nil)
  super(msg || 'User was created without a password')
end