Skip to content

Commit 69fdec7

Browse files
committed
🚧 touch up Authenticator
1 parent 04725de commit 69fdec7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/net/imap/sasl/authenticator.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ module SASL
106106
# * +scram_sha1_salted_passwords+, +scram_sha256_salted_password+ ---
107107
# Salted password(s) (with salt and iteration count) for the +SCRAM-*+
108108
# mechanism family. <tt>[salt, iterations, pbkdf2_hmac]</tt> tuple.
109+
# <em>(not implemented yet...)</em>
109110
# * +passcode+ --- passcode for SecurID 2FA <em>(not implemented)</em>
110111
# * +pin+ --- Personal Identification number, e.g. for SecurID 2FA
111112
# <em>(not implemented)</em>
@@ -306,7 +307,7 @@ def initialize(*, **, &callback)
306307
# See PlainAuthenticator or DigestMD5Authenticator for example
307308
# authenticator implementations.
308309
def process(server_challenge_string)
309-
raise NoMethodError, "#{__method__} is defined by subclasses"
310+
raise NotImplementedError, "#{__method__} is defined by subclasses"
310311
end
311312

312313
# :call-seq:

0 commit comments

Comments
 (0)