mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-03-25 09:25:53 +00:00
15 lines
374 B
Objective-C
15 lines
374 B
Objective-C
//
|
|
// Created by Stefan Reitshamer on 9/16/12.
|
|
//
|
|
//
|
|
|
|
|
|
@interface AWSQueryError : NSObject <NSXMLParserDelegate> {
|
|
NSMutableDictionary *values;
|
|
NSMutableString *currentStringBuffer;
|
|
BOOL parseErrorOccurred;
|
|
NSError *nsError;
|
|
}
|
|
- (id)initWithDomain:(NSString *)theDomain httpStatusCode:(int)theCode responseBody:(NSData *)theBody;
|
|
- (NSError *)nsError;
|
|
@end
|