metasploit-framework/lib/rex/proto/ntlm/exceptions.rb

18 lines
212 B
Ruby

# -*- coding: binary -*-
module Rex
module Proto
module NTLM
module Exceptions
class NTLMMissingChallenge < ::RuntimeError
def to_s
"Unable to complete, no challenge key found"
end
end
end
end
end
end