Files
metasploit-gs/lib/rex/proto/ntlm/exceptions.rb
T
Tab Assassin 7e5e0f7fc8 Retab lib
2013-08-30 16:28:33 -05:00

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