Package apple.classkit.enums
Class CLSErrorCode
- java.lang.Object
-
- apple.classkit.enums.CLSErrorCode
-
public final class CLSErrorCode extends java.lang.Object[@enum] CLSErrorCode [@constant] CLSErrorCodeNone No error. [@constant] CLSErrorCodeClassKitUnavailable ClassKit is not available on this device. [@constant] CLSErrorCodeInvalidArgument An invalid argument was provided to the API. [@constant] CLSErrorCodeInvalidModification Attempted to modify a readonly object. [@constant] CLSErrorCodeAuthorizationDenied The application is not authorized to perform the requested operation. [@constant] CLSErrorCodeDatabaseInaccessible Protected ClassKit is inaccessible because the device is locked. [@constant] CLSErrorCodeLimits Limits exceeded. [@constant] CLSErrorCodeInvalidCreate Attempted to save new object that already exists in the data store. [@constant] CLSErrorCodeInvalidUpdate Failed to save updated object in the data store. [@constant] CLSErrorCodePartialFailure Returned if an operation resulted in a mix of successes and failures.
-
-
Field Summary
Fields Modifier and Type Field Description static longAuthorizationDeniedstatic longClassKitUnavailablestatic longDatabaseInaccessiblestatic longInvalidArgumentstatic longInvalidCreatestatic longInvalidModificationstatic longInvalidUpdatestatic longLimitsstatic longNonestatic longPartialFailure
-
-
-
Field Detail
-
None
public static final long None
- See Also:
- Constant Field Values
-
ClassKitUnavailable
public static final long ClassKitUnavailable
- See Also:
- Constant Field Values
-
InvalidArgument
public static final long InvalidArgument
- See Also:
- Constant Field Values
-
InvalidModification
public static final long InvalidModification
- See Also:
- Constant Field Values
-
AuthorizationDenied
public static final long AuthorizationDenied
- See Also:
- Constant Field Values
-
DatabaseInaccessible
public static final long DatabaseInaccessible
- See Also:
- Constant Field Values
-
Limits
public static final long Limits
- See Also:
- Constant Field Values
-
InvalidCreate
public static final long InvalidCreate
- See Also:
- Constant Field Values
-
InvalidUpdate
public static final long InvalidUpdate
- See Also:
- Constant Field Values
-
PartialFailure
public static final long PartialFailure
- See Also:
- Constant Field Values
-
-