1module 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 15end 16 17