in swift-source/focus/Nimbus/Nimbus.swift [45:54]
func catchAll<T>(_ thunk: () throws -> T?) -> T? {
do {
return try thunk()
} catch NimbusError.DatabaseNotReady {
return nil
} catch {
errorReporter(error)
return nil
}
}