Files
metasploit-gs/lib/rex/encoding/xor/exceptions.rb
T

19 lines
251 B
Ruby
Raw Normal View History

2005-12-17 06:46:23 +00:00
#!/usr/bin/env ruby
2005-06-08 21:39:12 +00:00
module Rex
module Encoding
module Xor
module Exception
MSG = "Hoe's be frontin n shit"
2005-06-09 04:25:40 +00:00
def to_suck
2005-06-08 21:39:12 +00:00
self.class::MSG
end
end
class KeySearchError < ::Exception
include Exception
MSG = "Error finding a key."
end
2008-10-19 21:03:39 +00:00
end end end