︙ | | |
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
-
+
|
@interface XMPPException: OFException
{
XMPPConnection *_connection;
}
#ifdef OF_HAVE_PROPERTIES
/// \brief The connection the exception relates to
@property (readonly, assign) XMPPConnection *connection;
@property (readonly, retain) XMPPConnection *connection;
#endif
/**
* \brief Creates a new XMPPException.
*
* \param connection The connection that received the data responsible
* for this exception
|
︙ | | |
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
-
+
-
+
|
@interface XMPPStreamErrorException: XMPPException
{
OFString *_condition, *_reason;
}
#ifdef OF_HAVE_PROPERTIES
/// \brief The defined error condition specified by the stream error
@property (readonly, assign) OFString *condition;
@property (readonly, copy) OFString *condition;
/// \brief The descriptive free-form text specified by the stream error
@property (readonly, assign) OFString *reason;
@property (readonly, copy) OFString *reason;
#endif
/**
* \brief Creates a new XMPPStreamErrorException.
*
* \param connection The connection that received the stream error
* \param condition The defined error condition specified by the stream error
|
︙ | | |
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
-
+
-
+
|
@interface XMPPStringPrepFailedException: XMPPException
{
OFString *_profile, *_string;
}
#ifdef OF_HAVE_PROPERTIES
/// \brief The name of the stringprep profile that did not apply
@property (readonly, assign) OFString *profile;
@property (readonly, copy) OFString *profile;
/// \brief The string that failed the stringprep profile
@property (readonly, assign) OFString *string;
@property (readonly, copy) OFString *string;
#endif
/**
* \brief Creates a new XMPPStringPrepFailedException.
*
* \param connection The connection the string relates to
* \param profile The name of the stringprep profile that did not apply
|
︙ | | |
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
|
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
|
-
+
-
+
|
@interface XMPPIDNATranslationFailedException: XMPPException
{
OFString *_operation, *_string;
}
#ifdef OF_HAVE_PROPERTIES
/// \brief The IDNA translation operation which failed
@property (readonly, assign) OFString *operation;
@property (readonly, copy) OFString *operation;
/// \brief The string that could not be translated
@property (readonly, assign) OFString *string;
@property (readonly, copy) OFString *string;
#endif
/**
* \brief Creates a new XMPPIDNATranslationFailedException.
*
* \param connection The connection the string relates to
* \param operation The name of the stringprep profile that did not apply
|
︙ | | |
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
|
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
|
-
+
|
@interface XMPPAuthFailedException: XMPPException
{
OFString *_reason;
}
#ifdef OF_HAVE_PROPERTIES
/// \brief The reason the authentication failed
@property (readonly, assign) OFString *reason;
@property (readonly, copy) OFString *reason;
#endif
/**
* \brief Creates a new XMPPAuthFailedException.
*
* \param connection The connection that could not be authenticated
* \param reason The reason the authentication failed
|
︙ | | |