Class: Mongo::Error::MissingPassword
- Inherits:
-
Error
- Object
- Error
- Mongo::Error::MissingPassword
- 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.
Instance Method Summary collapse
-
#initialize(msg = nil) ⇒ MissingPassword
constructor
A new instance of MissingPassword.
Constructor Details
#initialize(msg = nil) ⇒ MissingPassword
Returns a new instance of MissingPassword.
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 |