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

20 lines
252 B
Ruby

#!/usr/bin/env ruby
module Rex
module Encoding
module Xor
module Exception
MSG = "Hoe's be frontin n shit"
def to_suck
self.class::MSG
end
end
class KeySearchError < ::Exception
include Exception
MSG = "Error finding a key."
end
end end end