1 import ExpoModulesCore
2 
3 internal class FailedToLoadImage: Exception {
4   override var reason: String {
5     "Could not get the image"
6   }
7 }
8 
9 internal class InitScannerFailed: Exception {
10   override var reason: String {
11     "Could not initialize the barcode scanner"
12   }
13 }
14 
15 internal class ImageLoaderNotFound: Exception {
16   override var reason: String {
17     "Image Loader module not found"
18   }
19 }
20