1 // Copyright 2022-present 650 Industries. All rights reserved. 2 3 import ABI49_0_0ExpoModulesCore 4 5 final class WebBrowserAlreadyOpenException: Exception { 6 override var reason: String { 7 "Another web browser is already open" 8 } 9 } 10 11 final class WebBrowserInvalidURLException: Exception { 12 override var reason: String { 13 return "The provided URL is not valid." 14 } 15 } 16