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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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