class BSON::Error::InvalidKey
Raised when trying to serialize an object into a key.
Public Class Methods
new(object)
click to toggle source
Instantiate the exception.
@example Instantiate the exception.
BSON::Object::InvalidKey.new(object)
@param [ Object
] object The object that was meant for the key.
@api private
Calls superclass method
# File lib/bson/error/invalid_key.rb, line 18 def initialize(object) super("#{object.class} instances are not allowed as keys in a BSON document.") end