CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/anemone/storage/exceptions.rb
Views: 1904
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