︙ | | |
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
-
+
|
#include <stdlib.h>
#import "XMPPExceptions.h"
#import "XMPPConnection.h"
@implementation XMPPException
+ exceptionWithConnection: (XMPPConnection*)connection
+ (instancetype)exceptionWithConnection: (XMPPConnection*)connection
{
return [[[self alloc] initWithConnection: connection] autorelease];
}
- init
{
@try {
|
︙ | | |
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
-
-
-
+
+
+
|
- (XMPPConnection*)connection
{
OF_GETTER(_connection, false)
}
@end
@implementation XMPPStreamErrorException
+ exceptionWithConnection: (XMPPConnection*)connection
condition: (OFString*)condition
reason: (OFString*)reason;
+ (instancetype)exceptionWithConnection: (XMPPConnection*)connection
condition: (OFString*)condition
reason: (OFString*)reason;
{
return [[[self alloc] initWithConnection: connection
condition: condition
reason: reason] autorelease];
}
- initWithConnection: (XMPPConnection*)connection
|
︙ | | |
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
-
-
-
+
+
+
|
- (OFString*)reason
{
OF_GETTER(_reason, false)
}
@end
@implementation XMPPStringPrepFailedException
+ exceptionWithConnection: (XMPPConnection*)connection
profile: (OFString*)profile
string: (OFString*)string
+ (instancetype)exceptionWithConnection: (XMPPConnection*)connection
profile: (OFString*)profile
string: (OFString*)string
{
return [[[self alloc] initWithConnection: connection
profile: profile
string: string] autorelease];
}
- initWithConnection: (XMPPConnection*)connection
|
︙ | | |
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
|
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
|
-
-
-
+
+
+
|
- (OFString*)string
{
OF_GETTER(_string, false)
}
@end
@implementation XMPPIDNATranslationFailedException
+ exceptionWithConnection: (XMPPConnection*)connection
operation: (OFString*)operation
string: (OFString*)string
+ (instancetype)exceptionWithConnection: (XMPPConnection*)connection
operation: (OFString*)operation
string: (OFString*)string
{
return [[[self alloc] initWithConnection: connection
operation: operation
string: string] autorelease];
}
- initWithConnection: (XMPPConnection*)connection
|
︙ | | |
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
|
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
|
-
-
+
+
|
- (OFString*)string
{
OF_GETTER(_string, false)
}
@end
@implementation XMPPAuthFailedException
+ exceptionWithConnection: (XMPPConnection*)connection
reason: (OFString*)reason;
+ (instancetype)exceptionWithConnection: (XMPPConnection*)connection
reason: (OFString*)reason;
{
return [[[self alloc] initWithConnection: connection
reason: reason] autorelease];
}
- initWithConnection: (XMPPConnection*)connection
{
|
︙ | | |