2005-06-08 21:39:12 +00:00
|
|
|
#!/usr/bin/ruby
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
end end end
|