CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/anemone/storage/exceptions.rb
Views: 11780
1
module Anemone
2
module Storage
3
4
class GenericError < Error; end;
5
6
class ConnectionError < Error; end
7
8
class RetrievalError < Error; end
9
10
class InsertionError < Error; end
11
12
class CloseError < Error; end
13
14
end
15
end
16
17