mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-04 22:58:14 +08:00
16 lines
326 B
C
16 lines
326 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;
|
|
|
|
typedef enum {
|
|
RKObjectLoaderRemoteSystemError = 1,
|
|
RKRequestBaseURLOfflineError
|
|
} RKRestKitError;
|