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

21 lines
288 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
end