CoreStoreErrorCode
public enum CoreStoreErrorCode : Int
The NSError error codes for CoreStoreErrorDomain.
-
A failure occured because of an unknown error.
Declaration
Swift
case unknownError -
The
NSPersistentStorecould note be initialized because another store existed at the specifiedNSURL.Declaration
Swift
case differentStorageExistsAtURL -
An
NSMappingModelcould not be found for a specific source and destination model versions.Declaration
Swift
case mappingModelNotFound -
Progressive migrations are disabled for a store, but an
NSMappingModelcould not be found for a specific source and destination model versions.Declaration
Swift
case progressiveMigrationRequired -
The
LocalStoragewas configured with.allowSynchronousLightweightMigration, but the model can only be migrated asynchronously.Declaration
Swift
case asynchronousMigrationRequired -
An internal SDK call failed with the specified “NSError” userInfo key.
Declaration
Swift
case internalError -
The transaction was terminated by a user-thrown
Errorspecified by “Error” userInfo key.Declaration
Swift
case userError -
The transaction was cancelled by the user.
Declaration
Swift
case userCancelled -
Attempted to perform a fetch but could not find any related persistent store.
Declaration
Swift
case persistentStoreNotFound
View on GitHub
CoreStoreErrorCode Enumeration Reference