Files
metasploit-gs/lib/rex/encoding/xor/exceptions.rb
T
Ramon de C Valle f124597a56 Code cleanups
git-svn-id: file:///home/svn/framework3/trunk@5773 4d416f70-5f16-0410-b530-b9f4589650da
2008-10-19 21:03:39 +00:00

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