1# -*- coding: binary -*- 2module Rex 3module Proto 4module NTLM 5module Exceptions 6 7class NTLMMissingChallenge < ::RuntimeError 8 def to_s 9 "Unable to complete, no challenge key found" 10 end 11end 12 13end 14end 15end 16end 17 18 19