throw is not the same as raise

Clearly this code never gets called.
This commit is contained in:
James Lee
2012-05-12 16:53:54 -06:00
parent bc1c9a7fe4
commit e2bf3c5750
@@ -49,14 +49,14 @@ class StreamPool < Rex::Post::Meterpreter::Channels::Pool
# This method returns the current offset into the pool.
#
def tell
throw NotImplementedError
raise NotImplementedError
end
#
# This method seeks to an offset in the pool.
#
def seek
throw NotImplementedError
raise NotImplementedError
end
#