mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-02 17:57:22 +08:00
24 lines
436 B
Objective-C
24 lines
436 B
Objective-C
//
|
|
// RKError.h
|
|
// RestKit
|
|
//
|
|
// Created by Jeremy Ellison on 5/10/11.
|
|
// Copyright 2011 Two Toasters. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
/**
|
|
A destination class for mapping simple remote error messages.
|
|
*/
|
|
@interface RKErrorMessage : NSObject {
|
|
NSString* _errorMessage;
|
|
}
|
|
|
|
/**
|
|
The error message string mapped from the response payload
|
|
*/
|
|
@property (nonatomic, retain) NSString* errorMessage;
|
|
|
|
@end
|