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