00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 #import "NSCodingProtocol.h"
00010 #import "NSCopyingProtocol.h"
00011
00012 @class NSDictionary, NSString;
00013
00014 @interface NSError : NSObject <NSCopying, NSCoding>
00015 {
00016 void *_reserved;
00017 int _code;
00018 NSString *_domain;
00019 NSDictionary *_userInfo;
00020 }
00021
00022 + (id)errorWithDomain:(id)fp8 code:(int)fp12 userInfo:(id)fp16;
00023 - (id)initWithDomain:(id)fp8 code:(int)fp12 userInfo:(id)fp16;
00024 - (void)dealloc;
00025 - (void)finalize;
00026 - (int)code;
00027 - (id)domain;
00028 - (id)userInfo;
00029 - (id)_cocoaErrorString:(id)fp8 alternate:(id)fp12;
00030 - (id)_retainedUserInfoCallBackForKey:(id)fp8;
00031 - (id)localizedDescription;
00032 - (id)localizedFailureReason;
00033 - (id)localizedRecoverySuggestion;
00034 - (id)localizedRecoveryOptions;
00035 - (id)recoveryAttempter;
00036 - (id)helpAnchor;
00037 - (id)description;
00038 - (id)copyWithZone:(struct _NSZone *)fp8;
00039 - (void)encodeWithCoder:(id)fp8;
00040 - (id)initWithCoder:(id)fp8;
00041
00042 @end
00043