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

19 lines
210 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