CloudCoreError
public enum CloudCoreError: Error, CustomStringConvertible
A enumeration representing an error value that can be thrown by framework
-
Entity doesn’t have some required attributes
Declaration
Swift
case missingServiceAttributes(entityName: String?)
-
Some CloudKit error
Declaration
Swift
case cloudKit(String)
-
Some CoreData error
Declaration
Swift
case coreData(String)
-
Custom error, description is placed inside associated value
Declaration
Swift
case custom(String)
-
CloudCore doesn’t support relationships with
NSOrderedSet
typeDeclaration
Swift
case orderedSetRelationshipIsNotSupported(NSRelationshipDescription)
-
A textual representation of error
Declaration
Swift
public var localizedDescription: String
-
A textual representation of error
Declaration
Swift
public var description: String