Files
metasploit-gs/lib/rex/encoding/xor/exceptions.rb
T
Tab Assassin 7e5e0f7fc8 Retab lib
2013-08-30 16:28:33 -05:00

19 lines
212 B
Ruby

#!/usr/bin/env 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