Files
metasploit-gs/lib/anemone/storage/exceptions.rb
T
HD Moore b3cc6e19b6 Initial import of an Anemone snapshot
git-svn-id: file:///home/svn/framework3/trunk@10924 4d416f70-5f16-0410-b530-b9f4589650da
2010-11-06 04:34:43 +00:00

16 lines
234 B
Ruby

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