Files
metasploit-gs/lib/rex/encoding/xor/exceptions.rb
T

18 lines
192 B
Ruby
Raw Normal View History

# -*- coding: binary -*-
2005-06-08 21:39:12 +00:00
module Rex
module Encoding
module Xor
module Exception
2009-11-16 15:16:08 +00:00
2005-06-08 21:39:12 +00:00
end
class KeySearchError < ::Exception
2013-08-30 16:28:33 -05:00
include Exception
MSG = "Error finding a key."
2005-06-08 21:39:12 +00:00
end
2009-11-16 15:16:08 +00:00
end end end