class Mongo::Error::MissingScramServerSignature

This exception is raised when the server returned +{done: true}+ in a SCRAM conversation but did not provide a ServerSignature.

Public Class Methods

new(msg = nil) click to toggle source
Calls superclass method Mongo::Error::new
# File lib/mongo/error/missing_scram_server_signature.rb, line 24
def initialize(msg = nil)
  msg ||= "Server signaled completion of SCRAM conversation without providing ServerSignature"
  super(msg)
end