OpenURLPolicyEnforcerError

public enum OpenURLPolicyEnforcerError : Error
extension OpenURLPolicyEnforcerError: SAPError

Encapsulates different types of errors that may occur when enforcing OpenURLPolicy.

  • Failed to swizzle UIApplication.open.

    Declaration

    Swift

    case failedToBlockUIApplicationOpen
  • Failed to swizzle UIApplication.canOpenURL.

    Declaration

    Swift

    case failedToBlockUIApplicationCanOpenURL
  • Failed to swizzle UIScene.open.

    Declaration

    Swift

    case failedToBlockUISceneOpen
  • Failed to block URLs in UITextView.

    Declaration

    Swift

    case failedToBlockUITextViewURLs
  • A textual representation of this instance.

    Declaration

    Swift

    public var description: String { get }
  • A localized message describing what error occurred.

    Declaration

    Swift

    public var errorDescription: String? { get }
  • A textual representation of this instance, suitable for debugging.

    Declaration

    Swift

    public var debugDescription: String { get }
  • A localized message describing the reason for the failure.

    Declaration

    Swift

    public var failureReason: String? { get }