123456789_123456789_123456789_123456789_123456789_

Class: Mongo::Error::MissingPassword

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/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

Class Method Summary

Constructor Details

.new(msg = nil) ⇒ MissingPassword

Since:

  • 2.8.0

[ GitHub ]

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

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