/ CoreData / include / CoreData / CoreDataErrors.h
CoreDataErrors.h
 1  #import <CoreData/CoreDataExports.h>
 2  #import <Foundation/NSString.h>
 3  
 4  COREDATA_EXPORT NSString *const NSAffectedStoresErrorKey;
 5  COREDATA_EXPORT NSString *const NSDetailedErrorsKey;
 6  
 7  enum {
 8      NSPersistentStoreInvalidTypeError = 134000,
 9      NSPersistentStoreTypeMismatchError = 134010,
10      NSPersistentStoreIncompatibleSchemaError = 134020,
11      NSPersistentStoreSaveError = 134030,
12      NSPersistentStoreIncompleteSaveError = 134040,
13      NSPersistentStoreOperationError = 134070,
14      NSPersistentStoreOpenError = 134080,
15      NSPersistentStoreTimeoutError = 134090,
16      NSPersistentStoreIncompatibleVersionHashError = 134100,
17  };