metasploit-framework/lib/rex/encoding/xor/exceptions.rb

18 lines
192 B
Ruby

# -*- coding: binary -*-
module Rex
module Encoding
module Xor
module Exception
end
class KeySearchError < ::Exception
include Exception
MSG = "Error finding a key."
end
end end end