mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-02 09:31:32 +08:00
20 lines
526 B
C
20 lines
526 B
C
//
|
|
// Errors.h
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 3/25/10.
|
|
// Copyright 2010 Two Toasters. All rights reserved.
|
|
//
|
|
|
|
// The error domain for RestKit generated errors
|
|
extern NSString* const RKRestKitErrorDomain;
|
|
|
|
extern NSString* const RKObjectMapperErrorObjectsKey;
|
|
|
|
typedef enum {
|
|
RKObjectLoaderRemoteSystemError = 1,
|
|
RKRequestBaseURLOfflineError = 2,
|
|
RKRequestUnexpectedResponseError = 3,
|
|
RKObjectLoaderUnexpectedResponseError = 4
|
|
} RKRestKitError;
|