b3cc6e19b6
git-svn-id: file:///home/svn/framework3/trunk@10924 4d416f70-5f16-0410-b530-b9f4589650da
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
|