Package apple.identitylookup.enums
Class ILMessageFilterError
- java.lang.Object
-
- apple.identitylookup.enums.ILMessageFilterError
-
public final class ILMessageFilterError extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static longInvalidNetworkURLThe network request URL included in the extension's Info.plist was either missing or invalid.static longNetworkRequestFailedNetwork request was attempted but failed.static longNetworkURLUnauthorizedExtension'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 longRedundantNetworkDeferralExtension requested to defer a request to its network service more than once.static longSystemAn unspecified system error occurred.
-
-
-
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
-
-