class SASL::UnknownMechanism
Will be raised by SASL.new_mechanism
if mechanism passed to the constructor is not known.
Public Class Methods
new(mechanism)
click to toggle source
# File lib/sasl/base.rb, line 32 def initialize(mechanism) @mechanism = mechanism end
Public Instance Methods
to_s()
click to toggle source
# File lib/sasl/base.rb, line 36 def to_s "Unknown mechanism: #{@mechanism.inspect}" end