shard-crystal-db/src/db/error.cr

24 lines
324 B
Crystal
Raw Normal View History

module DB
class Error < Exception
end
class MappingException < Exception
end
class PoolTimeout < Error
end
class PoolRetryAttemptsExceeded < Error
end
class ConnectionLost < Error
getter connection : Connection
def initialize(@connection)
end
end
class Rollback < Exception
end
end