1 import ExpoModulesCore
2 
3 internal 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 
9 internal class TaskManagerNotFound: Exception {
10   override var reason: String {
11     "TaskManager not found. Are you sure that Expo modules are properly linked?"
12   }
13 }
14