Class ILMessageFilterError


  • public final class ILMessageFilterError
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static long InvalidNetworkURL
      The network request URL included in the extension's Info.plist was either missing or invalid.
      static long NetworkRequestFailed
      Network request was attempted but failed.
      static long NetworkURLUnauthorized
      Extension's containing app is not authorized to allow extension to defer network requests to the host specified in the URL of the extension's Info.plist.
      static long RedundantNetworkDeferral
      Extension requested to defer a request to its network service more than once.
      static long System
      An unspecified system error occurred.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • System

        public static final long System
        An unspecified system error occurred.
        See Also:
        Constant Field Values
      • InvalidNetworkURL

        public static final long InvalidNetworkURL
        The network request URL included in the extension's Info.plist was either missing or invalid. See documentation for network request URL requirements.
        See Also:
        Constant Field Values
      • NetworkURLUnauthorized

        public static final long NetworkURLUnauthorized
        Extension's containing app is not authorized to allow extension to defer network requests to the host specified in the URL of the extension's Info.plist.
        See Also:
        Constant Field Values
      • NetworkRequestFailed

        public static final long NetworkRequestFailed
        Network request was attempted but failed. See `NSUnderlyingErrorKey` in `userInfo` dictionary for details.
        See Also:
        Constant Field Values
      • RedundantNetworkDeferral

        public static final long RedundantNetworkDeferral
        Extension requested to defer a request to its network service more than once. Requests may be deferred to the network at most once.
        See Also:
        Constant Field Values