Files
metasploit-gs/lib/anemone/storage/exceptions.rb
T

16 lines
234 B
Ruby
Raw Normal View History

2010-11-06 04:34:43 +00:00
module Anemone
module Storage
class GenericError < Error; end;
class ConnectionError < Error; end
class RetrievalError < Error; end
class InsertionError < Error; end
class CloseError < Error; end
end
end