Files
metasploit-gs/lib/rex/encoding/xor/exceptions.rb
T
HD Moore 88658064df /usr/bin/ruby vs /usr/bin/env ruby
git-svn-id: file:///home/svn/incoming/trunk@3242 4d416f70-5f16-0410-b530-b9f4589650da
2005-12-17 06:46:23 +00:00

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