Class NSFileProviderErrorCode


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

      Fields 
      Modifier and Type Field Description
      static long FilenameCollision
      An item already exists with the same parentItemIdentifier and filename (or with a filename differing only in case.)
      static long InsufficientQuota
      The item has not been uploaded because it would push the account over quota
      static long NoSuchItem
      The requested item doesn't exist \note Please use -[NSError (NSFileProviderError) fileProviderErrorForNonExistentItemWithIdentifier:] to build an error with this code.
      static long NotAuthenticated
      The user credentials cannot be verified
      static long PageExpired
      The value of the page token is too old, and the system must re-sync from scratch
      static long ServerUnreachable
      Connecting to the servers failed
      static long SyncAnchorExpired
      The value of the sync anchor is too old, and the system must re-sync from scratch
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • NotAuthenticated

        public static final long NotAuthenticated
        The user credentials cannot be verified
        See Also:
        Constant Field Values
      • FilenameCollision

        public static final long FilenameCollision
        An item already exists with the same parentItemIdentifier and filename (or with a filename differing only in case.) \note Please use -[NSError (NSFileProviderError) fileProviderErrorForCollisionWithItem:] to build an error with this code. \see -[NSError (NSFileProviderError) fileProviderErrorForCollisionWithItem:]
        See Also:
        Constant Field Values
      • SyncAnchorExpired

        public static final long SyncAnchorExpired
        The value of the sync anchor is too old, and the system must re-sync from scratch
        See Also:
        Constant Field Values
      • PageExpired

        public static final long PageExpired
        The value of the page token is too old, and the system must re-sync from scratch
        See Also:
        Constant Field Values
      • InsufficientQuota

        public static final long InsufficientQuota
        The item has not been uploaded because it would push the account over quota
        See Also:
        Constant Field Values
      • ServerUnreachable

        public static final long ServerUnreachable
        Connecting to the servers failed
        See Also:
        Constant Field Values
      • NoSuchItem

        public static final long NoSuchItem
        The requested item doesn't exist \note Please use -[NSError (NSFileProviderError) fileProviderErrorForNonExistentItemWithIdentifier:] to build an error with this code. \see -[NSError (NSFileProviderError) fileProviderErrorForNonExistentItemWithIdentifier:]
        See Also:
        Constant Field Values