File: telepathy-glib-errors.html

package info (click to toggle)
telepathy-glib 0.24.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 31,756 kB
  • sloc: ansic: 124,638; xml: 34,410; sh: 4,531; python: 3,528; makefile: 1,722; javascript: 211; cpp: 16
file content (1422 lines) | stat: -rw-r--r-- 81,711 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Telepathy protocol errors: telepathy-glib API Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" href="index.html" title="telepathy-glib API Reference Manual">
<link rel="up" href="ch-protocol.html" title="The Telepathy protocol">
<link rel="prev" href="telepathy-glib-enums.html" title="Telepathy protocol enumerations">
<link rel="next" href="telepathy-glib-gtypes.html" title="GType factory functions">
<meta name="generator" content="GTK-Doc V1.32 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
<td width="100%" align="left" class="shortcuts">
<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
                  <a href="#telepathy-glib-errors.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
                  <a href="#telepathy-glib-errors.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
</td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
<td><a accesskey="u" href="ch-protocol.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
<td><a accesskey="p" href="telepathy-glib-enums.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
<td><a accesskey="n" href="telepathy-glib-gtypes.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
</tr></table>
<div class="refentry">
<a name="telepathy-glib-errors"></a><div class="titlepage"></div>
<div class="refnamediv"><table width="100%"><tr>
<td valign="top">
<h2><span class="refentrytitle"><a name="telepathy-glib-errors.top_of_page"></a>Telepathy protocol errors</span></h2>
<p>Telepathy protocol errors — The errors from the Telepathy D-Bus spec, as a
GLib error domain</p>
</td>
<td class="gallery_image" valign="top" align="right"></td>
</tr></table></div>
<div class="refsect1">
<a name="telepathy-glib-errors.functions"></a><h2>Functions</h2>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="functions_proto_type">
<col class="functions_proto_name">
</colgroup>
<tbody>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="telepathy-glib-errors.html#tp-g-set-error-invalid-handle-type" title="tp_g_set_error_invalid_handle_type ()">tp_g_set_error_invalid_handle_type</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="telepathy-glib-errors.html#tp-g-set-error-unsupported-handle-type" title="tp_g_set_error_unsupported_handle_type ()">tp_g_set_error_unsupported_handle_type</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">const <span class="returnvalue">gchar</span> *
</td>
<td class="function_name">
<a class="link" href="telepathy-glib-errors.html#tp-error-get-dbus-name" title="tp_error_get_dbus_name ()">tp_error_get_dbus_name</a> <span class="c_punctuation">()</span>
</td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect1">
<a name="telepathy-glib-errors.other"></a><h2>Types and Values</h2>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="other_proto_type">
<col class="other_proto_name">
</colgroup>
<tbody>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-PREFIX:CAPS" title="TP_ERROR_PREFIX">TP_ERROR_PREFIX</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR:CAPS" title="TP_ERROR">TP_ERROR</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-TYPE-ERROR:CAPS" title="TP_TYPE_ERROR">TP_TYPE_ERROR</a></td>
</tr>
<tr>
<td class="datatype_keyword">enum</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TpError" title="enum TpError">TpError</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-NETWORK-ERROR:CAPS" title="TP_ERROR_STR_NETWORK_ERROR">TP_ERROR_STR_NETWORK_ERROR</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-NOT-IMPLEMENTED:CAPS" title="TP_ERROR_STR_NOT_IMPLEMENTED">TP_ERROR_STR_NOT_IMPLEMENTED</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-INVALID-ARGUMENT:CAPS" title="TP_ERROR_STR_INVALID_ARGUMENT">TP_ERROR_STR_INVALID_ARGUMENT</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-NOT-AVAILABLE:CAPS" title="TP_ERROR_STR_NOT_AVAILABLE">TP_ERROR_STR_NOT_AVAILABLE</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-PERMISSION-DENIED:CAPS" title="TP_ERROR_STR_PERMISSION_DENIED">TP_ERROR_STR_PERMISSION_DENIED</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-DISCONNECTED:CAPS" title="TP_ERROR_STR_DISCONNECTED">TP_ERROR_STR_DISCONNECTED</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-INVALID-HANDLE:CAPS" title="TP_ERROR_STR_INVALID_HANDLE">TP_ERROR_STR_INVALID_HANDLE</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-CHANNEL-BANNED:CAPS" title="TP_ERROR_STR_CHANNEL_BANNED">TP_ERROR_STR_CHANNEL_BANNED</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-CHANNEL-FULL:CAPS" title="TP_ERROR_STR_CHANNEL_FULL">TP_ERROR_STR_CHANNEL_FULL</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-CHANNEL-INVITE-ONLY:CAPS" title="TP_ERROR_STR_CHANNEL_INVITE_ONLY">TP_ERROR_STR_CHANNEL_INVITE_ONLY</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-NOT-YOURS:CAPS" title="TP_ERROR_STR_NOT_YOURS">TP_ERROR_STR_NOT_YOURS</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-CANCELLED:CAPS" title="TP_ERROR_STR_CANCELLED">TP_ERROR_STR_CANCELLED</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-AUTHENTICATION-FAILED:CAPS" title="TP_ERROR_STR_AUTHENTICATION_FAILED">TP_ERROR_STR_AUTHENTICATION_FAILED</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-ENCRYPTION-NOT-AVAILABLE:CAPS" title="TP_ERROR_STR_ENCRYPTION_NOT_AVAILABLE">TP_ERROR_STR_ENCRYPTION_NOT_AVAILABLE</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-ENCRYPTION-ERROR:CAPS" title="TP_ERROR_STR_ENCRYPTION_ERROR">TP_ERROR_STR_ENCRYPTION_ERROR</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-CERT-NOT-PROVIDED:CAPS" title="TP_ERROR_STR_CERT_NOT_PROVIDED">TP_ERROR_STR_CERT_NOT_PROVIDED</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-CERT-UNTRUSTED:CAPS" title="TP_ERROR_STR_CERT_UNTRUSTED">TP_ERROR_STR_CERT_UNTRUSTED</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-CERT-EXPIRED:CAPS" title="TP_ERROR_STR_CERT_EXPIRED">TP_ERROR_STR_CERT_EXPIRED</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-CERT-NOT-ACTIVATED:CAPS" title="TP_ERROR_STR_CERT_NOT_ACTIVATED">TP_ERROR_STR_CERT_NOT_ACTIVATED</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-CERT-FINGERPRINT-MISMATCH:CAPS" title="TP_ERROR_STR_CERT_FINGERPRINT_MISMATCH">TP_ERROR_STR_CERT_FINGERPRINT_MISMATCH</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-CERT-HOSTNAME-MISMATCH:CAPS" title="TP_ERROR_STR_CERT_HOSTNAME_MISMATCH">TP_ERROR_STR_CERT_HOSTNAME_MISMATCH</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-CERT-SELF-SIGNED:CAPS" title="TP_ERROR_STR_CERT_SELF_SIGNED">TP_ERROR_STR_CERT_SELF_SIGNED</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-CERT-INVALID:CAPS" title="TP_ERROR_STR_CERT_INVALID">TP_ERROR_STR_CERT_INVALID</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-NOT-CAPABLE:CAPS" title="TP_ERROR_STR_NOT_CAPABLE">TP_ERROR_STR_NOT_CAPABLE</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-OFFLINE:CAPS" title="TP_ERROR_STR_OFFLINE">TP_ERROR_STR_OFFLINE</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-CHANNEL-KICKED:CAPS" title="TP_ERROR_STR_CHANNEL_KICKED">TP_ERROR_STR_CHANNEL_KICKED</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-BUSY:CAPS" title="TP_ERROR_STR_BUSY">TP_ERROR_STR_BUSY</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-NO-ANSWER:CAPS" title="TP_ERROR_STR_NO_ANSWER">TP_ERROR_STR_NO_ANSWER</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-DOES-NOT-EXIST:CAPS" title="TP_ERROR_STR_DOES_NOT_EXIST">TP_ERROR_STR_DOES_NOT_EXIST</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-TERMINATED:CAPS" title="TP_ERROR_STR_TERMINATED">TP_ERROR_STR_TERMINATED</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-CONNECTION-REFUSED:CAPS" title="TP_ERROR_STR_CONNECTION_REFUSED">TP_ERROR_STR_CONNECTION_REFUSED</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-CONNECTION-FAILED:CAPS" title="TP_ERROR_STR_CONNECTION_FAILED">TP_ERROR_STR_CONNECTION_FAILED</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-CONNECTION-LOST:CAPS" title="TP_ERROR_STR_CONNECTION_LOST">TP_ERROR_STR_CONNECTION_LOST</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-ALREADY-CONNECTED:CAPS" title="TP_ERROR_STR_ALREADY_CONNECTED">TP_ERROR_STR_ALREADY_CONNECTED</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-CONNECTION-REPLACED:CAPS" title="TP_ERROR_STR_CONNECTION_REPLACED">TP_ERROR_STR_CONNECTION_REPLACED</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-REGISTRATION-EXISTS:CAPS" title="TP_ERROR_STR_REGISTRATION_EXISTS">TP_ERROR_STR_REGISTRATION_EXISTS</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-SERVICE-BUSY:CAPS" title="TP_ERROR_STR_SERVICE_BUSY">TP_ERROR_STR_SERVICE_BUSY</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-RESOURCE-UNAVAILABLE:CAPS" title="TP_ERROR_STR_RESOURCE_UNAVAILABLE">TP_ERROR_STR_RESOURCE_UNAVAILABLE</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-WOULD-BREAK-ANONYMITY:CAPS" title="TP_ERROR_STR_WOULD_BREAK_ANONYMITY">TP_ERROR_STR_WOULD_BREAK_ANONYMITY</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-CERT-REVOKED:CAPS" title="TP_ERROR_STR_CERT_REVOKED">TP_ERROR_STR_CERT_REVOKED</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-CERT-INSECURE:CAPS" title="TP_ERROR_STR_CERT_INSECURE">TP_ERROR_STR_CERT_INSECURE</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-CERT-LIMIT-EXCEEDED:CAPS" title="TP_ERROR_STR_CERT_LIMIT_EXCEEDED">TP_ERROR_STR_CERT_LIMIT_EXCEEDED</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-NOT-YET:CAPS" title="TP_ERROR_STR_NOT_YET">TP_ERROR_STR_NOT_YET</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-REJECTED:CAPS" title="TP_ERROR_STR_REJECTED">TP_ERROR_STR_REJECTED</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-PICKED-UP-ELSEWHERE:CAPS" title="TP_ERROR_STR_PICKED_UP_ELSEWHERE">TP_ERROR_STR_PICKED_UP_ELSEWHERE</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-CONFUSED:CAPS" title="TP_ERROR_STR_CONFUSED">TP_ERROR_STR_CONFUSED</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-SERVICE-CONFUSED:CAPS" title="TP_ERROR_STR_SERVICE_CONFUSED">TP_ERROR_STR_SERVICE_CONFUSED</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-SOFTWARE-UPGRADE-REQUIRED:CAPS" title="TP_ERROR_STR_SOFTWARE_UPGRADE_REQUIRED">TP_ERROR_STR_SOFTWARE_UPGRADE_REQUIRED</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-EMERGENCY-CALLS-NOT-SUPPORTED:CAPS" title="TP_ERROR_STR_EMERGENCY_CALLS_NOT_SUPPORTED">TP_ERROR_STR_EMERGENCY_CALLS_NOT_SUPPORTED</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-INSUFFICIENT-BALANCE:CAPS" title="TP_ERROR_STR_INSUFFICIENT_BALANCE">TP_ERROR_STR_INSUFFICIENT_BALANCE</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-MEDIA-CODECS-INCOMPATIBLE:CAPS" title="TP_ERROR_STR_MEDIA_CODECS_INCOMPATIBLE">TP_ERROR_STR_MEDIA_CODECS_INCOMPATIBLE</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-MEDIA-UNSUPPORTED-TYPE:CAPS" title="TP_ERROR_STR_MEDIA_UNSUPPORTED_TYPE">TP_ERROR_STR_MEDIA_UNSUPPORTED_TYPE</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-MEDIA-STREAMING-ERROR:CAPS" title="TP_ERROR_STR_MEDIA_STREAMING_ERROR">TP_ERROR_STR_MEDIA_STREAMING_ERROR</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="telepathy-glib-errors.html#TP-ERROR-STR-CAPTCHA-NOT-SUPPORTED:CAPS" title="TP_ERROR_STR_CAPTCHA_NOT_SUPPORTED">TP_ERROR_STR_CAPTCHA_NOT_SUPPORTED</a></td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect1">
<a name="telepathy-glib-errors.object-hierarchy"></a><h2>Object Hierarchy</h2>
<pre class="screen">    <a href="/usr/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html">GEnum</a>
    <span class="lineart">╰──</span> TpError
</pre>
</div>
<div class="refsect1">
<a name="telepathy-glib-errors.includes"></a><h2>Includes</h2>
<pre class="synopsis">#include &lt;telepathy-glib/telepathy-glib.h&gt;
</pre>
</div>
<div class="refsect1">
<a name="telepathy-glib-errors.description"></a><h2>Description</h2>
<p>This header provides the Telepathy D-Bus errors, in the form of a
GLib error domain. For D-Bus methods which fail with one of these errors,
dbus-glib will generate a reply message with the appropriate error.</p>
<p>It also provides utility functions used by functions which return an error.</p>
</div>
<div class="refsect1">
<a name="telepathy-glib-errors.functions_details"></a><h2>Functions</h2>
<div class="refsect2">
<a name="tp-g-set-error-invalid-handle-type"></a><h3>tp_g_set_error_invalid_handle_type ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
tp_g_set_error_invalid_handle_type (<em class="parameter"><code><span class="type">guint</span> type</code></em>,
                                    <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
<p>Set the error NotImplemented for an invalid handle type,
with an appropriate message.</p>
<p>Changed in version 0.7.23: previously, the error was
InvalidArgument.</p>
<p><span class="annotation">[<acronym title="Exposed in C code, not necessarily available in other languages."><span class="acronym">skip</span></acronym>]</span></p>
<div class="refsect3">
<a name="tp-g-set-error-invalid-handle-type.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>type</p></td>
<td class="parameter_description"><p>An invalid handle type</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>error</p></td>
<td class="parameter_description"><p>Either <code class="literal">NULL</code>, or used to return an error (as for g_set_error)</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="tp-g-set-error-unsupported-handle-type"></a><h3>tp_g_set_error_unsupported_handle_type ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
tp_g_set_error_unsupported_handle_type
                               (<em class="parameter"><code><span class="type">guint</span> type</code></em>,
                                <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
<p>Set the error NotImplemented for a handle type which is valid but is not
supported by this connection manager, with an appropriate message.</p>
<p>Changed in version 0.7.23: previously, the error was
InvalidArgument.</p>
<p><span class="annotation">[<acronym title="Exposed in C code, not necessarily available in other languages."><span class="acronym">skip</span></acronym>]</span></p>
<div class="refsect3">
<a name="tp-g-set-error-unsupported-handle-type.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>type</p></td>
<td class="parameter_description"><p>An unsupported handle type</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>error</p></td>
<td class="parameter_description"><p>Either <code class="literal">NULL</code>, or used to return an error (as for g_set_error)</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="tp-error-get-dbus-name"></a><h3>tp_error_get_dbus_name ()</h3>
<pre class="programlisting">const <span class="returnvalue">gchar</span> *
tp_error_get_dbus_name (<em class="parameter"><code><a class="link" href="telepathy-glib-errors.html#TpError" title="enum TpError"><span class="type">TpError</span></a> error</code></em>);</pre>
<p></p>
<div class="refsect3">
<a name="tp-error-get-dbus-name.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>error</p></td>
<td class="parameter_description"><p>a member of the <a class="link" href="telepathy-glib-errors.html#TpError" title="enum TpError"><span class="type">TpError</span></a> enum.</p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
<div class="refsect3">
<a name="tp-error-get-dbus-name.returns"></a><h4>Returns</h4>
<p> the D-Bus error name corresponding to <em class="parameter"><code>error</code></em>
.</p>
</div>
<p class="since">Since: 0.7.31</p>
</div>
</div>
<div class="refsect1">
<a name="telepathy-glib-errors.other_details"></a><h2>Types and Values</h2>
<div class="refsect2">
<a name="TP-ERROR-PREFIX:CAPS"></a><h3>TP_ERROR_PREFIX</h3>
<pre class="programlisting">#define TP_ERROR_PREFIX "org.freedesktop.Telepathy.Error"
</pre>
<p>The common prefix of Telepathy errors, as a string constant, without
the trailing '.' character.</p>
<p class="since">Since: 0.7.1</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR:CAPS"></a><h3>TP_ERROR</h3>
<pre class="programlisting">#define TP_ERROR (tp_error_quark ())
</pre>
<p>The error domain for the D-Bus errors described in the Telepathy
specification. Error codes in this domain come from the <a class="link" href="telepathy-glib-errors.html#TpError" title="enum TpError"><span class="type">TpError</span></a>
enumeration.</p>
<p>This macro expands to a call to a function returning the Telepathy error
domain. Since 0.7.17, this function automatically registers the domain with
dbus-glib for server-side use (using <a href="/usr/share/gtk-doc/html/dbus-glib/dbus-glib-DBusGError.html#dbus-g-error-domain-register"><code class="function">dbus_g_error_domain_register()</code></a>) when
called.</p>
<p>This used to be called <code class="literal">TP_ERRORS</code>.</p>
<p class="since">Since: 0.11.7</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-TYPE-ERROR:CAPS"></a><h3>TP_TYPE_ERROR</h3>
<pre class="programlisting">#define TP_TYPE_ERROR (tp_error_get_type ())
</pre>
<p>The GType of the Telepathy error enumeration.</p>
</div>
<hr>
<div class="refsect2">
<a name="TpError"></a><h3>enum TpError</h3>
<p>Enumerated type representing the Telepathy D-Bus errors.</p>
<div class="refsect3">
<a name="TpError.members"></a><h4>Members</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="300px" class="enum_members_name">
<col class="enum_members_description">
<col width="200px" class="enum_members_annotations">
</colgroup>
<tbody>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-NETWORK-ERROR:CAPS"></a>TP_ERROR_NETWORK_ERROR</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.NetworkError:
Raised when there is an error reading from or writing to the network.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-NOT-IMPLEMENTED:CAPS"></a>TP_ERROR_NOT_IMPLEMENTED</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.NotImplemented:
Raised when the requested method, channel, etc is not available on this
connection.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-INVALID-ARGUMENT:CAPS"></a>TP_ERROR_INVALID_ARGUMENT</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.InvalidArgument:
Raised when one of the provided arguments is invalid.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-NOT-AVAILABLE:CAPS"></a>TP_ERROR_NOT_AVAILABLE</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.NotAvailable:
Raised when the requested functionality is temporarily unavailable.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-PERMISSION-DENIED:CAPS"></a>TP_ERROR_PERMISSION_DENIED</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.PermissionDenied:
The user is not permitted to perform the requested operation.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-DISCONNECTED:CAPS"></a>TP_ERROR_DISCONNECTED</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.Disconnected:
The connection is not currently connected and cannot be used.
This error may also be raised when operations are performed on a
Connection for which StatusChanged has signalled status Disconnected
for reason None.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-INVALID-HANDLE:CAPS"></a>TP_ERROR_INVALID_HANDLE</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.InvalidHandle:
An identifier being converted to a handle was syntactically invalid,
or an invalid handle was used.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-CHANNEL-BANNED:CAPS"></a>TP_ERROR_CHANNEL_BANNED</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.Channel.Banned:
You are banned from the channel.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-CHANNEL-FULL:CAPS"></a>TP_ERROR_CHANNEL_FULL</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.Channel.Full:
The channel is full.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-CHANNEL-INVITE-ONLY:CAPS"></a>TP_ERROR_CHANNEL_INVITE_ONLY</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.Channel.InviteOnly:
The requested channel is invite-only.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-NOT-YOURS:CAPS"></a>TP_ERROR_NOT_YOURS</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.NotYours:
The requested channel or other resource already exists, and another
client is responsible for it</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-CANCELLED:CAPS"></a>TP_ERROR_CANCELLED</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.Cancelled:
Raised by an ongoing request if it is cancelled by user request before
it has completed, or when operations are performed on an object which
the user has asked to close (for instance, a Connection where the user
has called Disconnect, or a Channel where the user has called Close).</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-AUTHENTICATION-FAILED:CAPS"></a>TP_ERROR_AUTHENTICATION_FAILED</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.AuthenticationFailed:
Raised when authentication with a service was unsuccessful.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-ENCRYPTION-NOT-AVAILABLE:CAPS"></a>TP_ERROR_ENCRYPTION_NOT_AVAILABLE</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.EncryptionNotAvailable:
Raised if a user request insisted that encryption should be used,
but encryption was not actually available.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-ENCRYPTION-ERROR:CAPS"></a>TP_ERROR_ENCRYPTION_ERROR</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.EncryptionError:
Raised if encryption appears to be available, but could not actually be
used (for instance if SSL/TLS negotiation fails).</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-CERT-NOT-PROVIDED:CAPS"></a>TP_ERROR_CERT_NOT_PROVIDED</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.Cert.NotProvided:
Raised if the server did not provide a SSL/TLS certificate.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-CERT-UNTRUSTED:CAPS"></a>TP_ERROR_CERT_UNTRUSTED</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.Cert.Untrusted:
Raised if the server provided a SSL/TLS certificate signed by an
untrusted certifying authority.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-CERT-EXPIRED:CAPS"></a>TP_ERROR_CERT_EXPIRED</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.Cert.Expired:
Raised if the server provided an expired SSL/TLS certificate.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-CERT-NOT-ACTIVATED:CAPS"></a>TP_ERROR_CERT_NOT_ACTIVATED</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.Cert.NotActivated:
Raised if the server provided an SSL/TLS certificate that will become
valid at some point in the future.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-CERT-FINGERPRINT-MISMATCH:CAPS"></a>TP_ERROR_CERT_FINGERPRINT_MISMATCH</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.Cert.FingerprintMismatch:
Raised if the server provided an SSL/TLS certificate that did not have
the expected fingerprint.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-CERT-HOSTNAME-MISMATCH:CAPS"></a>TP_ERROR_CERT_HOSTNAME_MISMATCH</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.Cert.HostnameMismatch:
Raised if the server provided an SSL/TLS certificate that did not
match its hostname.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-CERT-SELF-SIGNED:CAPS"></a>TP_ERROR_CERT_SELF_SIGNED</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.Cert.SelfSigned:
Raised if the server provided an SSL/TLS certificate that is
self-signed and untrusted.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-CERT-INVALID:CAPS"></a>TP_ERROR_CERT_INVALID</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.Cert.Invalid:
Raised if the server provided an SSL/TLS certificate that is
unacceptable in some way that does not have a more specific error.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-NOT-CAPABLE:CAPS"></a>TP_ERROR_NOT_CAPABLE</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.NotCapable:
Raised when requested functionality is unavailable due to a contact
not having the required capabilities.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-OFFLINE:CAPS"></a>TP_ERROR_OFFLINE</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.Offline:
Raised when requested functionality is unavailable because a contact is
offline.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-CHANNEL-KICKED:CAPS"></a>TP_ERROR_CHANNEL_KICKED</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.Channel.Kicked:
Used to represent a user being ejected from a channel by another user,
for instance being kicked from a chatroom.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-BUSY:CAPS"></a>TP_ERROR_BUSY</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.Busy:
Used to represent a user being removed from a channel because of a
"busy" indication.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-NO-ANSWER:CAPS"></a>TP_ERROR_NO_ANSWER</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.NoAnswer:
Used to represent a user being removed from a channel because they did
not respond, e.g. to a StreamedMedia call.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-DOES-NOT-EXIST:CAPS"></a>TP_ERROR_DOES_NOT_EXIST</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.DoesNotExist:
Raised when the requested user does not, in fact, exist.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-TERMINATED:CAPS"></a>TP_ERROR_TERMINATED</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.Terminated:
Raised when a channel is terminated for an unspecified reason. In
particular, this error SHOULD be used whenever normal termination of a
1-1 StreamedMedia call by the remote user is represented as a D-Bus
error name.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-CONNECTION-REFUSED:CAPS"></a>TP_ERROR_CONNECTION_REFUSED</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.ConnectionRefused:
Raised when a connection is refused.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-CONNECTION-FAILED:CAPS"></a>TP_ERROR_CONNECTION_FAILED</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.ConnectionFailed:
Raised when a connection can't be established.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-CONNECTION-LOST:CAPS"></a>TP_ERROR_CONNECTION_LOST</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.ConnectionLost:
Raised when a connection is broken.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-ALREADY-CONNECTED:CAPS"></a>TP_ERROR_ALREADY_CONNECTED</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.AlreadyConnected:
Raised on attempts to connect again to an account that is already
connected, if the protocol or server does not allow this.
Since 0.7.34</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-CONNECTION-REPLACED:CAPS"></a>TP_ERROR_CONNECTION_REPLACED</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.ConnectionReplaced:
Used as disconnection reason for an existing connection if it is
disconnected because a second connection to the same account is made.
Since 0.7.34</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-REGISTRATION-EXISTS:CAPS"></a>TP_ERROR_REGISTRATION_EXISTS</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.RegistrationExists:
Raised on attempts to register an account on a server when the account
already exists.
Since 0.7.34</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-SERVICE-BUSY:CAPS"></a>TP_ERROR_SERVICE_BUSY</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.ServiceBusy:
Raised when a server or other infrastructure rejects a request because
it is too busy.
Since 0.7.34</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-RESOURCE-UNAVAILABLE:CAPS"></a>TP_ERROR_RESOURCE_UNAVAILABLE</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.ResourceUnavailable:
Raised when a local process rejects a request because it does not have
enough of a resource, such as memory.
Since 0.7.34</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-WOULD-BREAK-ANONYMITY:CAPS"></a>TP_ERROR_WOULD_BREAK_ANONYMITY</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.WouldBreakAnonymity:
Raised when a request cannot be satisfied without violating an
earlier request for anonymity, and the earlier request specified
that raising an error is preferable to disclosing the user's
identity
Since 0.11.7</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-CERT-REVOKED:CAPS"></a>TP_ERROR_CERT_REVOKED</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.Cert.Revoked:
Raised if the server provided an SSL/TLS certificate that has been
revoked.
Since 0.11.12</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-CERT-INSECURE:CAPS"></a>TP_ERROR_CERT_INSECURE</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.Cert.Insecure:
Raised if the server provided an SSL/TLS certificate that uses an
insecure cipher algorithm or is cryptographically weak.
Since 0.11.12</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-CERT-LIMIT-EXCEEDED:CAPS"></a>TP_ERROR_CERT_LIMIT_EXCEEDED</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.Cert.LimitExceeded:
Raised if the length in bytes of the server certificate, or the depth
of the server certificate chain, exceed the limits imposed by the
crypto library.
Since 0.11.12</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-NOT-YET:CAPS"></a>TP_ERROR_NOT_YET</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.NotYet:
Raised when the requested functionality is not yet available, but is
likely to become available after some time has passed.
Since 0.11.15</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-REJECTED:CAPS"></a>TP_ERROR_REJECTED</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.Rejected:
Raised when an incoming or outgoing call is rejected by the receiving
contact.
Since 0.13.2</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-PICKED-UP-ELSEWHERE:CAPS"></a>TP_ERROR_PICKED_UP_ELSEWHERE</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.PickedUpElsewhere:
Raised when a call was terminated as a result of the local user
picking up the call on a different resource.
Since 0.13.3</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-CONFUSED:CAPS"></a>TP_ERROR_CONFUSED</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.Confused:
Raised if a server rejects protocol messages from a connection manager
claiming that they do not make sense, two local processes fail to
understand each other, or an apparently impossible situation is
reached. This has a similar meaning to <a class="link" href="telepathy-glib-proxy.html#TP-DBUS-ERROR-INCONSISTENT:CAPS"><code class="literal">TP_DBUS_ERROR_INCONSISTENT</code></a> but
can be passed between processes via D-Bus.
Since 0.13.7</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-SERVICE-CONFUSED:CAPS"></a>TP_ERROR_SERVICE_CONFUSED</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.ServiceConfused:
Raised when a server or other piece of infrastructure indicates an
internal error, or when a message that makes no sense is received from
a server or other piece of infrastructure.
Since 0.13.7</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-EMERGENCY-CALLS-NOT-SUPPORTED:CAPS"></a>TP_ERROR_EMERGENCY_CALLS_NOT_SUPPORTED</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.EmergencyCallsNotSupported:
  Raised when a client attempts to dial a number that is recognized as an
  emergency number (e.g. '911' in the USA), but the Connection
  Manager or provider does not support dialling emergency numbers.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-SOFTWARE-UPGRADE-REQUIRED:CAPS"></a>TP_ERROR_SOFTWARE_UPGRADE_REQUIRED</p></td>
<td class="enum_member_description">
<p>org.freedesktop.Telepathy.Error.SoftwareUpgradeRequired:
  Raised when a Connection cannot be established because either the
  Connection Manager or its support library (e.g. wocky, papyon, sofiasip)
  requires upgrading to support a newer protocol version.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-INSUFFICIENT-BALANCE:CAPS"></a>TP_ERROR_INSUFFICIENT_BALANCE</p></td>
<td class="enum_member_description">
<code class="code">org.freedesktop.Telepathy.Error.InsufficientBalance</code>:
<p>  Raised if the user has insufficient balance to place a call.  The key
  'balance-required' MAY be included in CallStateDetails on a Call channel
  (with the same units and scale as AccountBalance) to indicate how much
  credit is required to make this call.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-MEDIA-CODECS-INCOMPATIBLE:CAPS"></a>TP_ERROR_MEDIA_CODECS_INCOMPATIBLE</p></td>
<td class="enum_member_description">
<code class="code">org.freedesktop.Telepathy.Error.Media.CodecsIncompatible</code>:
<p>  Raised when the local streaming implementation has no codecs in common
  with the remote side.
  Since 0.15.6</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-MEDIA-UNSUPPORTED-TYPE:CAPS"></a>TP_ERROR_MEDIA_UNSUPPORTED_TYPE</p></td>
<td class="enum_member_description">
<code class="code">org.freedesktop.Telepathy.Error.Media.UnsupportedType</code>:
<p>  The media stream type requested is not supported by either the local or
  remote side.
  Since 0.15.6</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-MEDIA-STREAMING-ERROR:CAPS"></a>TP_ERROR_MEDIA_STREAMING_ERROR</p></td>
<td class="enum_member_description">
<code class="code">org.freedesktop.Telepathy.Error.Media.StreamingError</code>:
<p>  Raised when the call's streaming implementation has some kind of internal
  error.
  Since 0.15.6</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
<tr>
<td class="enum_member_name"><p><a name="TP-ERROR-CAPTCHA-NOT-SUPPORTED:CAPS"></a>TP_ERROR_CAPTCHA_NOT_SUPPORTED</p></td>
<td class="enum_member_description">
<code class="code">org.freedesktop.Telepathy.Error.Media.CaptchaNotSupported</code>:
<p>  Raised if no UI is available to present captchas, or if one is
  available but it is unable to answer any of the captchas given.</p>
</td>
<td class="enum_member_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-NETWORK-ERROR:CAPS"></a><h3>TP_ERROR_STR_NETWORK_ERROR</h3>
<pre class="programlisting">#define TP_ERROR_STR_NETWORK_ERROR "org.freedesktop.Telepathy.Error.NetworkError"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.NetworkError</p>
<p>Raised when there is an error reading from or writing to the network.</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-NOT-IMPLEMENTED:CAPS"></a><h3>TP_ERROR_STR_NOT_IMPLEMENTED</h3>
<pre class="programlisting">#define TP_ERROR_STR_NOT_IMPLEMENTED "org.freedesktop.Telepathy.Error.NotImplemented"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.NotImplemented</p>
<p>Raised when the requested method, channel, etc is not available on this connection.</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-INVALID-ARGUMENT:CAPS"></a><h3>TP_ERROR_STR_INVALID_ARGUMENT</h3>
<pre class="programlisting">#define TP_ERROR_STR_INVALID_ARGUMENT "org.freedesktop.Telepathy.Error.InvalidArgument"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.InvalidArgument</p>
<p>Raised when one of the provided arguments is invalid.</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-NOT-AVAILABLE:CAPS"></a><h3>TP_ERROR_STR_NOT_AVAILABLE</h3>
<pre class="programlisting">#define TP_ERROR_STR_NOT_AVAILABLE "org.freedesktop.Telepathy.Error.NotAvailable"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.NotAvailable</p>
<p>Raised when the requested functionality is temporarily unavailable.</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-PERMISSION-DENIED:CAPS"></a><h3>TP_ERROR_STR_PERMISSION_DENIED</h3>
<pre class="programlisting">#define TP_ERROR_STR_PERMISSION_DENIED "org.freedesktop.Telepathy.Error.PermissionDenied"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.PermissionDenied</p>
<p>The user is not permitted to perform the requested operation.</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-DISCONNECTED:CAPS"></a><h3>TP_ERROR_STR_DISCONNECTED</h3>
<pre class="programlisting">#define TP_ERROR_STR_DISCONNECTED "org.freedesktop.Telepathy.Error.Disconnected"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.Disconnected</p>
<p>The connection is not currently connected and cannot be used.       This error may also be raised when operations are performed on a       Connection for which       &lt;tp:dbus-ref namespace="org.freedesktop.Telepathy.Connection"&gt;StatusChanged&lt;/tp:dbus-ref&gt;       has signalled status Disconnected for reason None.        &lt;tp:rationale&gt;         The second usage corresponds to None in the         &lt;tp:type&gt;Connection_Status_Reason&lt;/tp:type&gt; enum; if a better reason         is available, the corresponding error should be used instead.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-INVALID-HANDLE:CAPS"></a><h3>TP_ERROR_STR_INVALID_HANDLE</h3>
<pre class="programlisting">#define TP_ERROR_STR_INVALID_HANDLE "org.freedesktop.Telepathy.Error.InvalidHandle"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.InvalidHandle</p>
<p>The handle specified is unknown on this channel or connection.</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-CHANNEL-BANNED:CAPS"></a><h3>TP_ERROR_STR_CHANNEL_BANNED</h3>
<pre class="programlisting">#define TP_ERROR_STR_CHANNEL_BANNED "org.freedesktop.Telepathy.Error.Channel.Banned"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.Channel.Banned</p>
<p>You are banned from the channel.</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-CHANNEL-FULL:CAPS"></a><h3>TP_ERROR_STR_CHANNEL_FULL</h3>
<pre class="programlisting">#define TP_ERROR_STR_CHANNEL_FULL "org.freedesktop.Telepathy.Error.Channel.Full"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.Channel.Full</p>
<p>The channel is full.</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-CHANNEL-INVITE-ONLY:CAPS"></a><h3>TP_ERROR_STR_CHANNEL_INVITE_ONLY</h3>
<pre class="programlisting">#define TP_ERROR_STR_CHANNEL_INVITE_ONLY "org.freedesktop.Telepathy.Error.Channel.InviteOnly"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.Channel.InviteOnly</p>
<p>The requested channel is invite-only.</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-NOT-YOURS:CAPS"></a><h3>TP_ERROR_STR_NOT_YOURS</h3>
<pre class="programlisting">#define TP_ERROR_STR_NOT_YOURS "org.freedesktop.Telepathy.Error.NotYours"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.NotYours</p>
<p>&lt;tp:docstring xmlns="http://www.w3.org/1999/xhtml"&gt;       &lt;p&gt;The requested channel or other resource already exists, and another         user interface in this session is responsible for it.&lt;/p&gt;        &lt;p&gt;User interfaces SHOULD handle this error unobtrusively, since it         indicates that some other user interface is already processing the         channel.&lt;/p&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-CANCELLED:CAPS"></a><h3>TP_ERROR_STR_CANCELLED</h3>
<pre class="programlisting">#define TP_ERROR_STR_CANCELLED "org.freedesktop.Telepathy.Error.Cancelled"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.Cancelled</p>
<p>Raised by an ongoing request if it is cancelled by user request before       it has completed, or when operations are performed on an object which       the user has asked to close (for instance, a Connection where the user       has called Disconnect, or a Channel where the user has called Close).        &lt;tp:rationale&gt;         The second form can be used to correspond to the Requested member in         the &lt;tp:type&gt;Connection_Status_Reason&lt;/tp:type&gt; enum, or to         to represent the situation where disconnecting a Connection,         closing a Channel, etc. has been requested by the user but this         request has not yet been acted on, for instance because the         service will only act on the request when it has finished processing         an event queue.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-AUTHENTICATION-FAILED:CAPS"></a><h3>TP_ERROR_STR_AUTHENTICATION_FAILED</h3>
<pre class="programlisting">#define TP_ERROR_STR_AUTHENTICATION_FAILED "org.freedesktop.Telepathy.Error.AuthenticationFailed"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.AuthenticationFailed</p>
<p>Raised when authentication with a service was unsuccessful.       &lt;tp:rationale&gt;         This corresponds to Authentication_Failed in the         &lt;tp:type&gt;Connection_Status_Reason&lt;/tp:type&gt; enum.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-ENCRYPTION-NOT-AVAILABLE:CAPS"></a><h3>TP_ERROR_STR_ENCRYPTION_NOT_AVAILABLE</h3>
<pre class="programlisting">#define TP_ERROR_STR_ENCRYPTION_NOT_AVAILABLE "org.freedesktop.Telepathy.Error.EncryptionNotAvailable"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.EncryptionNotAvailable</p>
<p>Raised if a user request insisted that encryption should be used,       but encryption was not actually available.        &lt;tp:rationale&gt;         This corresponds to part of Encryption_Error in the         &lt;tp:type&gt;Connection_Status_Reason&lt;/tp:type&gt; enum. It's been separated         into a distinct error here because the two concepts that were part         of EncryptionError seem to be things that could reasonably appear         differently in the UI.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-ENCRYPTION-ERROR:CAPS"></a><h3>TP_ERROR_STR_ENCRYPTION_ERROR</h3>
<pre class="programlisting">#define TP_ERROR_STR_ENCRYPTION_ERROR "org.freedesktop.Telepathy.Error.EncryptionError"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.EncryptionError</p>
<p>Raised if encryption appears to be available, but could not actually be       used (for instance if SSL/TLS negotiation fails).       &lt;tp:rationale&gt;         This corresponds to part of Encryption_Error in the         &lt;tp:type&gt;Connection_Status_Reason&lt;/tp:type&gt; enum.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-CERT-NOT-PROVIDED:CAPS"></a><h3>TP_ERROR_STR_CERT_NOT_PROVIDED</h3>
<pre class="programlisting">#define TP_ERROR_STR_CERT_NOT_PROVIDED "org.freedesktop.Telepathy.Error.Cert.NotProvided"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.Cert.NotProvided</p>
<p>Raised if the server did not provide a SSL/TLS certificate. This error       MUST NOT be used to represent the absence of a client certificate       provided by the Telepathy connection manager.       &lt;tp:rationale&gt;         This corresponds to Cert_Not_Provided in the         &lt;tp:type&gt;Connection_Status_Reason&lt;/tp:type&gt; enum. That error         explicitly applied only to server SSL certificates, so this one         is similarly limited; having the CM present a client certificate         is a possible future feature, but it should have its own error         handling.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-CERT-UNTRUSTED:CAPS"></a><h3>TP_ERROR_STR_CERT_UNTRUSTED</h3>
<pre class="programlisting">#define TP_ERROR_STR_CERT_UNTRUSTED "org.freedesktop.Telepathy.Error.Cert.Untrusted"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.Cert.Untrusted</p>
<p>Raised if the server provided a SSL/TLS certificate signed by an       untrusted certifying authority. This error SHOULD NOT be used to       represent a self-signed certificate: see the Self Signed error for that.       &lt;tp:rationale&gt;         This corresponds to Cert_Untrusted in the         &lt;tp:type&gt;Connection_Status_Reason&lt;/tp:type&gt; enum and to Untrusted in the         &lt;tp:type&gt;TLS_Certificate_Reject_Reason&lt;/tp:type&gt; enum, with a clarification         to avoid ambiguity.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-CERT-EXPIRED:CAPS"></a><h3>TP_ERROR_STR_CERT_EXPIRED</h3>
<pre class="programlisting">#define TP_ERROR_STR_CERT_EXPIRED "org.freedesktop.Telepathy.Error.Cert.Expired"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.Cert.Expired</p>
<p>Raised if the server provided an expired SSL/TLS certificate.       &lt;tp:rationale&gt;         This corresponds to Cert_Expired in the         &lt;tp:type&gt;Connection_Status_Reason&lt;/tp:type&gt; enum and to Expired in         the &lt;tp:type&gt;TLS_Certificate_Reject_Reason&lt;/tp:type&gt; enum.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-CERT-NOT-ACTIVATED:CAPS"></a><h3>TP_ERROR_STR_CERT_NOT_ACTIVATED</h3>
<pre class="programlisting">#define TP_ERROR_STR_CERT_NOT_ACTIVATED "org.freedesktop.Telepathy.Error.Cert.NotActivated"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.Cert.NotActivated</p>
<p>Raised if the server provided an SSL/TLS certificate that will become       valid at some point in the future.       &lt;tp:rationale&gt;         This corresponds to Cert_Not_Activated in the         &lt;tp:type&gt;Connection_Status_Reason&lt;/tp:type&gt; enum and to         Not_Activated in the &lt;tp:type&gt;TLS_Certificate_Reject_Reason&lt;/tp:type&gt; enum.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-CERT-FINGERPRINT-MISMATCH:CAPS"></a><h3>TP_ERROR_STR_CERT_FINGERPRINT_MISMATCH</h3>
<pre class="programlisting">#define TP_ERROR_STR_CERT_FINGERPRINT_MISMATCH "org.freedesktop.Telepathy.Error.Cert.FingerprintMismatch"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.Cert.FingerprintMismatch</p>
<p>Raised if the server provided an SSL/TLS certificate that did not have       the expected fingerprint.       &lt;tp:rationale&gt;         This corresponds to Cert_Fingerprint_Mismatch in the         &lt;tp:type&gt;Connection_Status_Reason&lt;/tp:type&gt; enum and to         Fingerprint_Mismatch in the &lt;tp:type&gt;TLS_Certificate_Reject_Reason&lt;/tp:type&gt; enum.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-CERT-HOSTNAME-MISMATCH:CAPS"></a><h3>TP_ERROR_STR_CERT_HOSTNAME_MISMATCH</h3>
<pre class="programlisting">#define TP_ERROR_STR_CERT_HOSTNAME_MISMATCH "org.freedesktop.Telepathy.Error.Cert.HostnameMismatch"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.Cert.HostnameMismatch</p>
<p>&lt;tp:docstring xmlns="http://www.w3.org/1999/xhtml"&gt;       &lt;p&gt;Raised if the server provided an SSL/TLS certificate that did not match       its hostname.&lt;/p&gt;       &lt;p&gt;You MAY be able to get more details about the expected and certified       hostnames by looking up the 'expected-hostname' and 'certificate-hostname'       keys in the details map that came together with this error.&lt;/p&gt;       &lt;tp:rationale&gt;         This corresponds to Cert_Hostname_Mismatch in the         &lt;tp:type&gt;Connection_Status_Reason&lt;/tp:type&gt; enum and to Hostname_Mismatch         in the &lt;tp:type&gt;TLS_Certificate_Reject_Reason&lt;/tp:type&gt; enum.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-CERT-SELF-SIGNED:CAPS"></a><h3>TP_ERROR_STR_CERT_SELF_SIGNED</h3>
<pre class="programlisting">#define TP_ERROR_STR_CERT_SELF_SIGNED "org.freedesktop.Telepathy.Error.Cert.SelfSigned"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.Cert.SelfSigned</p>
<p>Raised if the server provided an SSL/TLS certificate that is self-signed       and untrusted.       &lt;tp:rationale&gt;         This corresponds to Cert_Self_Signed in the         &lt;tp:type&gt;Connection_Status_Reason&lt;/tp:type&gt; enum and to Self_Signed         in the &lt;tp:type&gt;TLS_Certificate_Reject_Reason&lt;/tp:type&gt; enum.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-CERT-INVALID:CAPS"></a><h3>TP_ERROR_STR_CERT_INVALID</h3>
<pre class="programlisting">#define TP_ERROR_STR_CERT_INVALID "org.freedesktop.Telepathy.Error.Cert.Invalid"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.Cert.Invalid</p>
<p>Raised if the server provided an SSL/TLS certificate that is       unacceptable in some way that does not have a more specific error.       &lt;tp:rationale&gt;         This corresponds to Cert_Other_Error in the         &lt;tp:type&gt;Connection_Status_Reason&lt;/tp:type&gt; enum and to Unknown         in the &lt;tp:type&gt;TLS_Certificate_Reject_Reason&lt;/tp:type&gt; enum.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-NOT-CAPABLE:CAPS"></a><h3>TP_ERROR_STR_NOT_CAPABLE</h3>
<pre class="programlisting">#define TP_ERROR_STR_NOT_CAPABLE "org.freedesktop.Telepathy.Error.NotCapable"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.NotCapable</p>
<p>Raised when requested functionality is unavailable due to contact     not having required capabilities.</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-OFFLINE:CAPS"></a><h3>TP_ERROR_STR_OFFLINE</h3>
<pre class="programlisting">#define TP_ERROR_STR_OFFLINE "org.freedesktop.Telepathy.Error.Offline"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.Offline</p>
<p>Raised when requested functionality is unavailable because a contact is       offline.        &lt;tp:rationale&gt;         This corresponds to Offline in the         &lt;tp:type&gt;Channel_Group_Change_Reason&lt;/tp:type&gt; enum.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-CHANNEL-KICKED:CAPS"></a><h3>TP_ERROR_STR_CHANNEL_KICKED</h3>
<pre class="programlisting">#define TP_ERROR_STR_CHANNEL_KICKED "org.freedesktop.Telepathy.Error.Channel.Kicked"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.Channel.Kicked</p>
<p>Used to represent a user being ejected from a channel by another user,       for instance being kicked from a chatroom.        &lt;tp:rationale&gt;         This corresponds to Kicked in the         &lt;tp:type&gt;Channel_Group_Change_Reason&lt;/tp:type&gt; enum.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-BUSY:CAPS"></a><h3>TP_ERROR_STR_BUSY</h3>
<pre class="programlisting">#define TP_ERROR_STR_BUSY "org.freedesktop.Telepathy.Error.Busy"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.Busy</p>
<p>Used to represent a user being removed from a channel because of a       &amp;quot;busy&amp;quot; indication. This error SHOULD NOT be used to represent a server       or other infrastructure being too busy to process a request - for that,       see ServerBusy.        &lt;tp:rationale&gt;         This corresponds to Busy in the         &lt;tp:type&gt;Channel_Group_Change_Reason&lt;/tp:type&gt; enum.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-NO-ANSWER:CAPS"></a><h3>TP_ERROR_STR_NO_ANSWER</h3>
<pre class="programlisting">#define TP_ERROR_STR_NO_ANSWER "org.freedesktop.Telepathy.Error.NoAnswer"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.NoAnswer</p>
<p>Used to represent a user being removed from a channel because they did       not respond, e.g. to a StreamedMedia call.        &lt;tp:rationale&gt;         This corresponds to No_Answer in the         &lt;tp:type&gt;Channel_Group_Change_Reason&lt;/tp:type&gt; enum.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-DOES-NOT-EXIST:CAPS"></a><h3>TP_ERROR_STR_DOES_NOT_EXIST</h3>
<pre class="programlisting">#define TP_ERROR_STR_DOES_NOT_EXIST "org.freedesktop.Telepathy.Error.DoesNotExist"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.DoesNotExist</p>
<p>Raised when the requested user does not, in fact, exist.        &lt;tp:rationale&gt;         This corresponds to Invalid_Contact in the         &lt;tp:type&gt;Channel_Group_Change_Reason&lt;/tp:type&gt; enum, but can also be         used to represent other things not existing (like chatrooms, perhaps).       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-TERMINATED:CAPS"></a><h3>TP_ERROR_STR_TERMINATED</h3>
<pre class="programlisting">#define TP_ERROR_STR_TERMINATED "org.freedesktop.Telepathy.Error.Terminated"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.Terminated</p>
<p>Raised when a channel is terminated for an unspecified reason. In       particular, this error SHOULD be used whenever normal termination of       a 1-1 StreamedMedia call by the remote user is represented as a D-Bus       error name.        &lt;tp:rationale&gt;         This corresponds to None in the         &lt;tp:type&gt;Channel_Group_Change_Reason&lt;/tp:type&gt; enum.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-CONNECTION-REFUSED:CAPS"></a><h3>TP_ERROR_STR_CONNECTION_REFUSED</h3>
<pre class="programlisting">#define TP_ERROR_STR_CONNECTION_REFUSED "org.freedesktop.Telepathy.Error.ConnectionRefused"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.ConnectionRefused</p>
<p>Raised when a connection is refused.</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-CONNECTION-FAILED:CAPS"></a><h3>TP_ERROR_STR_CONNECTION_FAILED</h3>
<pre class="programlisting">#define TP_ERROR_STR_CONNECTION_FAILED "org.freedesktop.Telepathy.Error.ConnectionFailed"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.ConnectionFailed</p>
<p>Raised when a connection can't be established.</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-CONNECTION-LOST:CAPS"></a><h3>TP_ERROR_STR_CONNECTION_LOST</h3>
<pre class="programlisting">#define TP_ERROR_STR_CONNECTION_LOST "org.freedesktop.Telepathy.Error.ConnectionLost"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.ConnectionLost</p>
<p>Raised when a connection is broken.</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-ALREADY-CONNECTED:CAPS"></a><h3>TP_ERROR_STR_ALREADY_CONNECTED</h3>
<pre class="programlisting">#define TP_ERROR_STR_ALREADY_CONNECTED "org.freedesktop.Telepathy.Error.AlreadyConnected"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.AlreadyConnected</p>
<p>Raised when the user attempts to connect to an account but they are       already connected (perhaps from another client or computer), and the       protocol or account settings do not allow this.        &lt;tp:rationale&gt;         XMPP can have this behaviour if the user chooses the same resource         in both clients (it is server-dependent whether the result is         AlreadyConnected on the new connection, ConnectionReplaced on the         old connection, or two successful connections).       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-CONNECTION-REPLACED:CAPS"></a><h3>TP_ERROR_STR_CONNECTION_REPLACED</h3>
<pre class="programlisting">#define TP_ERROR_STR_CONNECTION_REPLACED "org.freedesktop.Telepathy.Error.ConnectionReplaced"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.ConnectionReplaced</p>
<p>Raised by an existing connection to an account if it is replaced by       a new connection (perhaps from another client or computer).        &lt;tp:rationale&gt;         In MSNP, when connecting twice with the same Passport, the new         connection &amp;quot;wins&amp;quot; and the old one is automatically disconnected.         XMPP can also have this behaviour if the user chooses the same         resource in two clients (it is server-dependent whether the result is         AlreadyConnected on the new connection, ConnectionReplaced on the         old connection, or two successful connections).       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-REGISTRATION-EXISTS:CAPS"></a><h3>TP_ERROR_STR_REGISTRATION_EXISTS</h3>
<pre class="programlisting">#define TP_ERROR_STR_REGISTRATION_EXISTS "org.freedesktop.Telepathy.Error.RegistrationExists"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.RegistrationExists</p>
<p>Raised during in-band registration if the server indicates that the       requested account already exists.</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-SERVICE-BUSY:CAPS"></a><h3>TP_ERROR_STR_SERVICE_BUSY</h3>
<pre class="programlisting">#define TP_ERROR_STR_SERVICE_BUSY "org.freedesktop.Telepathy.Error.ServiceBusy"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.ServiceBusy</p>
<p>&lt;tp:docstring xmlns="http://www.w3.org/1999/xhtml"&gt;       Raised if a server or some other piece of infrastructure cannot process       the request, e.g. due to resource limitations. Clients MAY try again       later.        &lt;tp:rationale&gt;         This is not the same error as Busy, which indicates that a         &lt;em&gt;user&lt;/em&gt; is busy.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-RESOURCE-UNAVAILABLE:CAPS"></a><h3>TP_ERROR_STR_RESOURCE_UNAVAILABLE</h3>
<pre class="programlisting">#define TP_ERROR_STR_RESOURCE_UNAVAILABLE "org.freedesktop.Telepathy.Error.ResourceUnavailable"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.ResourceUnavailable</p>
<p>Raised if a request cannot be satisfied because a process local to the       user has insufficient resources. Clients MAY try again       later.        &lt;tp:rationale&gt;         For instance, the &lt;tp:dbus-ref namespace="org.freedesktop.Telepathy"&gt;ChannelDispatcher&lt;/tp:dbus-ref&gt;         might raise this error for some or all channel requests if it has         detected that there is not enough free memory.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-WOULD-BREAK-ANONYMITY:CAPS"></a><h3>TP_ERROR_STR_WOULD_BREAK_ANONYMITY</h3>
<pre class="programlisting">#define TP_ERROR_STR_WOULD_BREAK_ANONYMITY "org.freedesktop.Telepathy.Error.WouldBreakAnonymity"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.WouldBreakAnonymity</p>
<p>Raised if a request cannot be satisfied without violating an earlier       request for anonymity, and the earlier request specified that raising       an error is preferable to disclosing the user's identity (for instance       via &lt;tp:dbus-ref namespace="org.freedesktop.Telepathy"&gt;Connection.Interface.Anonymity.AnonymityMandatory&lt;/tp:dbus-ref&gt; or       &lt;tp:dbus-ref namespace="org.freedesktop.Telepathy"&gt;Channel.Interface.Anonymity.AnonymityMandatory&lt;/tp:dbus-ref&gt;).</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-CERT-REVOKED:CAPS"></a><h3>TP_ERROR_STR_CERT_REVOKED</h3>
<pre class="programlisting">#define TP_ERROR_STR_CERT_REVOKED "org.freedesktop.Telepathy.Error.Cert.Revoked"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.Cert.Revoked</p>
<p>Raised if the server provided an SSL/TLS certificate that has been       revoked.       &lt;tp:rationale&gt;         This corresponds to Cert_Revoked in the         &lt;tp:type&gt;Connection_Status_Reason&lt;/tp:type&gt; enum and to Revoked         in the &lt;tp:type&gt;TLS_Certificate_Reject_Reason&lt;/tp:type&gt; enum.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-CERT-INSECURE:CAPS"></a><h3>TP_ERROR_STR_CERT_INSECURE</h3>
<pre class="programlisting">#define TP_ERROR_STR_CERT_INSECURE "org.freedesktop.Telepathy.Error.Cert.Insecure"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.Cert.Insecure</p>
<p>Raised if the server provided an SSL/TLS certificate that uses an       insecure cipher algorithm or is cryptographically weak.       &lt;tp:rationale&gt;         This corresponds to Cert_Insecure in the         &lt;tp:type&gt;Connection_Status_Reason&lt;/tp:type&gt; enum and to Insecure         in the &lt;tp:type&gt;TLS_Certificate_Reject_Reason&lt;/tp:type&gt; enum.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-CERT-LIMIT-EXCEEDED:CAPS"></a><h3>TP_ERROR_STR_CERT_LIMIT_EXCEEDED</h3>
<pre class="programlisting">#define TP_ERROR_STR_CERT_LIMIT_EXCEEDED "org.freedesktop.Telepathy.Error.Cert.LimitExceeded"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.Cert.LimitExceeded</p>
<p>Raised if the length in bytes of the server certificate, or the depth of the       server certificate chain exceeds the limits imposed by the crypto       library.       &lt;tp:rationale&gt;         This corresponds to Cert_Limit_Exceeded in the         &lt;tp:type&gt;Connection_Status_Reason&lt;/tp:type&gt; enum and to Limit_Exceeded         in the &lt;tp:type&gt;TLS_Certificate_Reject_Reason&lt;/tp:type&gt; enum.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-NOT-YET:CAPS"></a><h3>TP_ERROR_STR_NOT_YET</h3>
<pre class="programlisting">#define TP_ERROR_STR_NOT_YET "org.freedesktop.Telepathy.Error.NotYet"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.NotYet</p>
<p>Raised when the requested functionality is not yet available, but is       likely to become available after some time has passed.</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-REJECTED:CAPS"></a><h3>TP_ERROR_STR_REJECTED</h3>
<pre class="programlisting">#define TP_ERROR_STR_REJECTED "org.freedesktop.Telepathy.Error.Rejected"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.Rejected</p>
<p>Raised when an incoming or outgoing &lt;tp:dbus-ref namespace="ofdT.Channel.Type"&gt;Call1&lt;/tp:dbus-ref&gt; is       rejected by the the receiver.</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-PICKED-UP-ELSEWHERE:CAPS"></a><h3>TP_ERROR_STR_PICKED_UP_ELSEWHERE</h3>
<pre class="programlisting">#define TP_ERROR_STR_PICKED_UP_ELSEWHERE "org.freedesktop.Telepathy.Error.PickedUpElsewhere"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.PickedUpElsewhere</p>
<p>Raised when a call was terminated as a result of the local user       picking up the call on a different resource.</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-CONFUSED:CAPS"></a><h3>TP_ERROR_STR_CONFUSED</h3>
<pre class="programlisting">#define TP_ERROR_STR_CONFUSED "org.freedesktop.Telepathy.Error.Confused"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.Confused</p>
<p>Raised if a server rejects protocol messages from a connection manager       claiming that they do not make sense, two local processes fail to       understand each other, or an apparently impossible situation is       reached.        &lt;tp:rationale&gt;         For instance, this would be an appropriate mapping for XMPP's         errors bad-format, invalid-xml, etc., which can't happen unless         the local (or remote) XMPP implementation is faulty. This is         also analogous to         &lt;tp:value-ref type="Media_Stream_Error"&gt;Invalid_CM_Behavior&lt;/tp:value-ref&gt;,         &lt;code&gt;TP_DBUS_ERROR_INCONSISTENT&lt;/code&gt; in telepathy-glib, and         &lt;code&gt;TELEPATHY_QT4_ERROR_INCONSISTENT&lt;/code&gt; in telepathy-qt4.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-SERVICE-CONFUSED:CAPS"></a><h3>TP_ERROR_STR_SERVICE_CONFUSED</h3>
<pre class="programlisting">#define TP_ERROR_STR_SERVICE_CONFUSED "org.freedesktop.Telepathy.Error.ServiceConfused"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.ServiceConfused</p>
<p>Raised when a server or other piece of infrastructure indicates an       internal error, or when a message that makes no sense is received from       a server or other piece of infrastructure.        &lt;tp:rationale&gt;         For instance, this is appropriate for XMPP's         &lt;code&gt;internal-server-error&lt;/code&gt;, and is also appropriate if         you receive sufficiently inconsistent information from a server that         you cannot continue.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-SOFTWARE-UPGRADE-REQUIRED:CAPS"></a><h3>TP_ERROR_STR_SOFTWARE_UPGRADE_REQUIRED</h3>
<pre class="programlisting">#define TP_ERROR_STR_SOFTWARE_UPGRADE_REQUIRED "org.freedesktop.Telepathy.Error.SoftwareUpgradeRequired"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.SoftwareUpgradeRequired</p>
<p>&lt;tp:docstring xmlns="http://www.w3.org/1999/xhtml"&gt;       &lt;p&gt;Raised as a         &lt;tp:dbus-ref namespace="ofdT.Connection"&gt;ConnectionError&lt;/tp:dbus-ref&gt;         when a Connection cannot be established because either the Connection         Manager or its support library (e.g. wocky, papyon, sofiasip) requires         upgrading to support a newer protocol version.&lt;/p&gt;        &lt;p&gt;This error corresponds to the         &lt;tp:type&gt;Connection_Status_Reason&lt;/tp:type&gt; of Network_Error.&lt;/p&gt;        &lt;tp:rationale&gt;         Some protocols transmit a protocol or library version number to the         server, which will disconnect them if the version isn't appropriate.         This way we can report the error to the user, and if appropriate, the         user's client can check for updates.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-EMERGENCY-CALLS-NOT-SUPPORTED:CAPS"></a><h3>TP_ERROR_STR_EMERGENCY_CALLS_NOT_SUPPORTED</h3>
<pre class="programlisting">#define TP_ERROR_STR_EMERGENCY_CALLS_NOT_SUPPORTED "org.freedesktop.Telepathy.Error.EmergencyCallsNotSupported"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.EmergencyCallsNotSupported</p>
<p>Raised if a client attempts to dial a number that is recognized as an       emergency number (e.g. '911' in the USA), but the Connection Manager or       provider does not support dialling emergency numbers.        &lt;tp:rationale&gt;         Many VOIP providers have the ability to dial traditional (PSTN)         telephone numbers, but do not provide the ability to dial emergency         numbers (for instance, Google Voice).  This error provides additional         information about why such a call was unsuccessful.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-INSUFFICIENT-BALANCE:CAPS"></a><h3>TP_ERROR_STR_INSUFFICIENT_BALANCE</h3>
<pre class="programlisting">#define TP_ERROR_STR_INSUFFICIENT_BALANCE "org.freedesktop.Telepathy.Error.InsufficientBalance"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.InsufficientBalance</p>
<p>&lt;tp:docstring xmlns="http://www.w3.org/1999/xhtml"&gt;       &lt;p&gt;Raised if the user has insufficient         &lt;tp:dbus-ref namespace="ofdT.Connection.Interface"&gt;Balance&lt;/tp:dbus-ref&gt;         to place a call or send a message.&lt;/p&gt;        &lt;p&gt;The key 'balance-required' MAY be included in         &lt;tp:dbus-ref namespace="ofdT.Channel.Type.Call1"&gt;CallStateDetails&lt;/tp:dbus-ref&gt;         or a delivery report's &lt;tp:type&gt;Message_Part&lt;/tp:type&gt;         (with the same units and scale as         &lt;tp:dbus-ref namespace="ofdT.Connection.Interface.Balance"&gt;AccountBalance&lt;/tp:dbus-ref&gt;)         to indicate how much credit is required to make this call or send         this message.&lt;/p&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-MEDIA-CODECS-INCOMPATIBLE:CAPS"></a><h3>TP_ERROR_STR_MEDIA_CODECS_INCOMPATIBLE</h3>
<pre class="programlisting">#define TP_ERROR_STR_MEDIA_CODECS_INCOMPATIBLE "org.freedesktop.Telepathy.Error.Media.CodecsIncompatible"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.Media.CodecsIncompatible</p>
<p>Raised when the local streaming implementation has no codecs in common       with the remote side.        &lt;tp:rationale&gt;         This corresponds to         &lt;tp:value-ref type="Call_State_Change_Reason"&gt;Media_Error&lt;/tp:value-ref&gt;.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-MEDIA-UNSUPPORTED-TYPE:CAPS"></a><h3>TP_ERROR_STR_MEDIA_UNSUPPORTED_TYPE</h3>
<pre class="programlisting">#define TP_ERROR_STR_MEDIA_UNSUPPORTED_TYPE "org.freedesktop.Telepathy.Error.Media.UnsupportedType"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.Media.UnsupportedType</p>
<p>The media stream type requested is not supported by either the       local or remote side.        &lt;tp:rationale&gt;         This corresponds to         &lt;tp:value-ref type="Call_State_Change_Reason"&gt;Media_Error&lt;/tp:value-ref&gt;.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-MEDIA-STREAMING-ERROR:CAPS"></a><h3>TP_ERROR_STR_MEDIA_STREAMING_ERROR</h3>
<pre class="programlisting">#define TP_ERROR_STR_MEDIA_STREAMING_ERROR "org.freedesktop.Telepathy.Error.Media.StreamingError"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.Media.StreamingError</p>
<p>Raised when the call's streaming implementation has some kind of internal       error.        &lt;tp:rationale&gt;         This corresponds to         &lt;tp:value-ref type="Call_State_Change_Reason"&gt;Internal_Error&lt;/tp:value-ref&gt;.       &lt;/tp:rationale&gt;</p>
</div>
<hr>
<div class="refsect2">
<a name="TP-ERROR-STR-CAPTCHA-NOT-SUPPORTED:CAPS"></a><h3>TP_ERROR_STR_CAPTCHA_NOT_SUPPORTED</h3>
<pre class="programlisting">#define TP_ERROR_STR_CAPTCHA_NOT_SUPPORTED "org.freedesktop.Telepathy.Error.CaptchaNotSupported"
</pre>
<p>The D-Bus error name org.freedesktop.Telepathy.Error.CaptchaNotSupported</p>
<p>&lt;tp:docstring xmlns="http://www.w3.org/1999/xhtml"&gt;       &lt;p&gt;Raised if the &lt;tp:dbus-ref namespace="ofdT.Channel.Interface"&gt;CaptchaAuthentication1&lt;/tp:dbus-ref&gt;          Handler either has no UI to present captchas, or it does, but wasn't          able to answer any of the captchas given.&lt;/p&gt;</p>
</div>
</div>
</div>
<div class="footer">
<hr>Generated by GTK-Doc V1.32</div>
</body>
</html>