18 lines
212 B
Ruby
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
|
|
|