︙ | | |
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
-
-
+
+
|
/**
* \brief An exception indicating a stream error was received
*/
@interface XMPPStreamErrorException: XMPPException
{
/// \cond internal
OFString *condition;
OFString *reason;
OFString *_condition;
OFString *_reason;
/// \endcond
}
#ifdef OF_HAVE_PROPERTIES
/// \brief The defined error condition specified by the stream error
@property (readonly, assign) OFString *condition;
/// \brief The descriptive free-form text specified by the stream error
|
︙ | | |
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
-
-
+
+
|
/**
* \brief An exception indicating a stringprep profile
* did not apply to a string
*/
@interface XMPPStringPrepFailedException: XMPPException
{
/// \cond internal
OFString *profile;
OFString *string;
OFString *_profile;
OFString *_string;
/// \endcond
}
#ifdef OF_HAVE_PROPERTIES
/// \brief The name of the stringprep profile that did not apply
@property (readonly, assign) OFString *profile;
/// \brief The string that failed the stringprep profile
|
︙ | | |
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
|
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
|
-
-
+
+
|
/**
* \brief An exception indicating IDNA translation of a string failed
*/
@interface XMPPIDNATranslationFailedException: XMPPException
{
/// \cond internal
OFString *operation;
OFString *string;
OFString *_operation;
OFString *_string;
/// \endcond
}
#ifdef OF_HAVE_PROPERTIES
/// \brief The IDNA translation operation which failed
@property (readonly, assign) OFString *operation;
/// \brief The string that could not be translated
|
︙ | | |
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
|
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
|
-
+
|
/**
* \brief An exception indicating authentication failed
*/
@interface XMPPAuthFailedException: XMPPException
{
/// \cond internal
OFString *reason;
OFString *_reason;
/// \endcond
}
#ifdef OF_HAVE_PROPERTIES
/// \brief The reason the authentication failed
@property (readonly, assign) OFString *reason;
#endif
|
︙ | | |