16 lines
234 B
Ruby
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
|