MountFolderError
public enum MountFolderError : CustomStringConvertible, JSONRepresentable
The MountFolderError union
-
An unspecified error.
Declaration
Swift
case accessError(Sharing.SharedFolderAccessError)
-
Mounting would cause a shared folder to be inside another, which is disallowed.
Declaration
Swift
case insideSharedFolder
-
The current user does not have enough space to mount the shared folder.
Declaration
Swift
case insufficientQuota(Sharing.InsufficientQuotaAmounts)
-
The shared folder is already mounted.
Declaration
Swift
case alreadyMounted
-
The current user does not have permission to perform this action.
Declaration
Swift
case noPermission
-
The shared folder is not mountable. One example where this can occur is when the shared folder belongs within a team folder in the user’s Dropbox.
Declaration
Swift
case notMountable
-
An unspecified error.
Declaration
Swift
case other
-
Declaration
Swift
public var description: String { get }