Files
metasploit-gs/lib/rex/proto/dns/exceptions.rb
T
Spencer McIntyre 7fe10d8613 Switch to a more generic upstream resolvers model
Upstream resolvers can be DNS servers or something else.
2024-02-08 11:22:33 -05:00

15 lines
143 B
Ruby

# -*- coding: binary -*-
module Rex
module Proto
module DNS
module Exceptions
class ConfigError < Rex::RuntimeError
end
end
end
end
end