UNPKG

416 BPlain TextView Raw
1import ExpoModulesCore
2
3internal class BackgroundFetchDisabled: Exception {
4 override var reason: String {
5 "Background Fetch has not been configured. To enable it, add `fetch` to `UIBackgroundModes` in the application's Info.plist file"
6 }
7}
8
9internal class TaskManagerNotFound: Exception {
10 override var reason: String {
11 "TaskManager not found. Are you sure that Expo modules are properly linked?"
12 }
13}