Imported Upstream version 2.0207
[platform/upstream/perl-XML-LibXML.git] / lib / XML / LibXML / ErrNo.pm
1 # $Id: ErrNo.pm,v 1.1.2.1 2004/04/20 20:09:48 pajas Exp $
2 #
3 #
4 # This is free software, you may use it and distribute it under the same terms as
5 # Perl itself.
6 #
7 # Copyright 2001-2003 AxKit.com Ltd., 2002-2006 Christian Glahn, 2006-2009 Petr Pajas
8 #
9 #
10
11 package XML::LibXML::ErrNo;
12
13 use strict;
14 use warnings;
15 use vars qw($VERSION);
16
17 $VERSION = "2.0207"; # VERSION TEMPLATE: DO NOT CHANGE
18
19 use constant ERR_OK                               => 0;
20 use constant ERR_INTERNAL_ERROR                   => 1;
21 use constant ERR_NO_MEMORY                        => 2;
22 use constant ERR_DOCUMENT_START                   => 3;
23 use constant ERR_DOCUMENT_EMPTY                   => 4;
24 use constant ERR_DOCUMENT_END                     => 5;
25 use constant ERR_INVALID_HEX_CHARREF              => 6;
26 use constant ERR_INVALID_DEC_CHARREF              => 7;
27 use constant ERR_INVALID_CHARREF                  => 8;
28 use constant ERR_INVALID_CHAR                     => 9;
29 use constant ERR_CHARREF_AT_EOF                   => 10;
30 use constant ERR_CHARREF_IN_PROLOG                => 11;
31 use constant ERR_CHARREF_IN_EPILOG                => 12;
32 use constant ERR_CHARREF_IN_DTD                   => 13;
33 use constant ERR_ENTITYREF_AT_EOF                 => 14;
34 use constant ERR_ENTITYREF_IN_PROLOG              => 15;
35 use constant ERR_ENTITYREF_IN_EPILOG              => 16;
36 use constant ERR_ENTITYREF_IN_DTD                 => 17;
37 use constant ERR_PEREF_AT_EOF                     => 18;
38 use constant ERR_PEREF_IN_PROLOG                  => 19;
39 use constant ERR_PEREF_IN_EPILOG                  => 20;
40 use constant ERR_PEREF_IN_INT_SUBSET              => 21;
41 use constant ERR_ENTITYREF_NO_NAME                => 22;
42 use constant ERR_ENTITYREF_SEMICOL_MISSING        => 23;
43 use constant ERR_PEREF_NO_NAME                    => 24;
44 use constant ERR_PEREF_SEMICOL_MISSING            => 25;
45 use constant ERR_UNDECLARED_ENTITY                => 26;
46 use constant WAR_UNDECLARED_ENTITY                => 27;
47 use constant ERR_UNPARSED_ENTITY                  => 28;
48 use constant ERR_ENTITY_IS_EXTERNAL               => 29;
49 use constant ERR_ENTITY_IS_PARAMETER              => 30;
50 use constant ERR_UNKNOWN_ENCODING                 => 31;
51 use constant ERR_UNSUPPORTED_ENCODING             => 32;
52 use constant ERR_STRING_NOT_STARTED               => 33;
53 use constant ERR_STRING_NOT_CLOSED                => 34;
54 use constant ERR_NS_DECL_ERROR                    => 35;
55 use constant ERR_ENTITY_NOT_STARTED               => 36;
56 use constant ERR_ENTITY_NOT_FINISHED              => 37;
57 use constant ERR_LT_IN_ATTRIBUTE                  => 38;
58 use constant ERR_ATTRIBUTE_NOT_STARTED            => 39;
59 use constant ERR_ATTRIBUTE_NOT_FINISHED           => 40;
60 use constant ERR_ATTRIBUTE_WITHOUT_VALUE          => 41;
61 use constant ERR_ATTRIBUTE_REDEFINED              => 42;
62 use constant ERR_LITERAL_NOT_STARTED              => 43;
63 use constant ERR_LITERAL_NOT_FINISHED             => 44;
64 use constant ERR_COMMENT_NOT_FINISHED             => 45;
65 use constant ERR_PI_NOT_STARTED                   => 46;
66 use constant ERR_PI_NOT_FINISHED                  => 47;
67 use constant ERR_NOTATION_NOT_STARTED             => 48;
68 use constant ERR_NOTATION_NOT_FINISHED            => 49;
69 use constant ERR_ATTLIST_NOT_STARTED              => 50;
70 use constant ERR_ATTLIST_NOT_FINISHED             => 51;
71 use constant ERR_MIXED_NOT_STARTED                => 52;
72 use constant ERR_MIXED_NOT_FINISHED               => 53;
73 use constant ERR_ELEMCONTENT_NOT_STARTED          => 54;
74 use constant ERR_ELEMCONTENT_NOT_FINISHED         => 55;
75 use constant ERR_XMLDECL_NOT_STARTED              => 56;
76 use constant ERR_XMLDECL_NOT_FINISHED             => 57;
77 use constant ERR_CONDSEC_NOT_STARTED              => 58;
78 use constant ERR_CONDSEC_NOT_FINISHED             => 59;
79 use constant ERR_EXT_SUBSET_NOT_FINISHED          => 60;
80 use constant ERR_DOCTYPE_NOT_FINISHED             => 61;
81 use constant ERR_MISPLACED_CDATA_END              => 62;
82 use constant ERR_CDATA_NOT_FINISHED               => 63;
83 use constant ERR_RESERVED_XML_NAME                => 64;
84 use constant ERR_SPACE_REQUIRED                   => 65;
85 use constant ERR_SEPARATOR_REQUIRED               => 66;
86 use constant ERR_NMTOKEN_REQUIRED                 => 67;
87 use constant ERR_NAME_REQUIRED                    => 68;
88 use constant ERR_PCDATA_REQUIRED                  => 69;
89 use constant ERR_URI_REQUIRED                     => 70;
90 use constant ERR_PUBID_REQUIRED                   => 71;
91 use constant ERR_LT_REQUIRED                      => 72;
92 use constant ERR_GT_REQUIRED                      => 73;
93 use constant ERR_LTSLASH_REQUIRED                 => 74;
94 use constant ERR_EQUAL_REQUIRED                   => 75;
95 use constant ERR_TAG_NAME_MISMATCH                => 76;
96 use constant ERR_TAG_NOT_FINISHED                 => 77;
97 use constant ERR_STANDALONE_VALUE                 => 78;
98 use constant ERR_ENCODING_NAME                    => 79;
99 use constant ERR_HYPHEN_IN_COMMENT                => 80;
100 use constant ERR_INVALID_ENCODING                 => 81;
101 use constant ERR_EXT_ENTITY_STANDALONE            => 82;
102 use constant ERR_CONDSEC_INVALID                  => 83;
103 use constant ERR_VALUE_REQUIRED                   => 84;
104 use constant ERR_NOT_WELL_BALANCED                => 85;
105 use constant ERR_EXTRA_CONTENT                    => 86;
106 use constant ERR_ENTITY_CHAR_ERROR                => 87;
107 use constant ERR_ENTITY_PE_INTERNAL               => 88;
108 use constant ERR_ENTITY_LOOP                      => 89;
109 use constant ERR_ENTITY_BOUNDARY                  => 90;
110 use constant ERR_INVALID_URI                      => 91;
111 use constant ERR_URI_FRAGMENT                     => 92;
112 use constant WAR_CATALOG_PI                       => 93;
113 use constant ERR_NO_DTD                           => 94;
114 use constant ERR_CONDSEC_INVALID_KEYWORD          => 95;
115 use constant ERR_VERSION_MISSING                  => 96;
116 use constant WAR_UNKNOWN_VERSION                  => 97;
117 use constant WAR_LANG_VALUE                       => 98;
118 use constant WAR_NS_URI                           => 99;
119 use constant WAR_NS_URI_RELATIVE                  => 100;
120 use constant NS_ERR_XML_NAMESPACE                 => 200;
121 use constant NS_ERR_UNDEFINED_NAMESPACE           => 201;
122 use constant NS_ERR_QNAME                         => 202;
123 use constant NS_ERR_ATTRIBUTE_REDEFINED           => 203;
124 use constant DTD_ATTRIBUTE_DEFAULT                => 500;
125 use constant DTD_ATTRIBUTE_REDEFINED              => 501;
126 use constant DTD_ATTRIBUTE_VALUE                  => 502;
127 use constant DTD_CONTENT_ERROR                    => 503;
128 use constant DTD_CONTENT_MODEL                    => 504;
129 use constant DTD_CONTENT_NOT_DETERMINIST          => 505;
130 use constant DTD_DIFFERENT_PREFIX                 => 506;
131 use constant DTD_ELEM_DEFAULT_NAMESPACE           => 507;
132 use constant DTD_ELEM_NAMESPACE                   => 508;
133 use constant DTD_ELEM_REDEFINED                   => 509;
134 use constant DTD_EMPTY_NOTATION                   => 510;
135 use constant DTD_ENTITY_TYPE                      => 511;
136 use constant DTD_ID_FIXED                         => 512;
137 use constant DTD_ID_REDEFINED                     => 513;
138 use constant DTD_ID_SUBSET                        => 514;
139 use constant DTD_INVALID_CHILD                    => 515;
140 use constant DTD_INVALID_DEFAULT                  => 516;
141 use constant DTD_LOAD_ERROR                       => 517;
142 use constant DTD_MISSING_ATTRIBUTE                => 518;
143 use constant DTD_MIXED_CORRUPT                    => 519;
144 use constant DTD_MULTIPLE_ID                      => 520;
145 use constant DTD_NO_DOC                           => 521;
146 use constant DTD_NO_DTD                           => 522;
147 use constant DTD_NO_ELEM_NAME                     => 523;
148 use constant DTD_NO_PREFIX                        => 524;
149 use constant DTD_NO_ROOT                          => 525;
150 use constant DTD_NOTATION_REDEFINED               => 526;
151 use constant DTD_NOTATION_VALUE                   => 527;
152 use constant DTD_NOT_EMPTY                        => 528;
153 use constant DTD_NOT_PCDATA                       => 529;
154 use constant DTD_NOT_STANDALONE                   => 530;
155 use constant DTD_ROOT_NAME                        => 531;
156 use constant DTD_STANDALONE_WHITE_SPACE           => 532;
157 use constant DTD_UNKNOWN_ATTRIBUTE                => 533;
158 use constant DTD_UNKNOWN_ELEM                     => 534;
159 use constant DTD_UNKNOWN_ENTITY                   => 535;
160 use constant DTD_UNKNOWN_ID                       => 536;
161 use constant DTD_UNKNOWN_NOTATION                 => 537;
162 use constant HTML_STRUCURE_ERROR                  => 800;
163 use constant HTML_UNKNOWN_TAG                     => 801;
164 use constant RNGP_ANYNAME_ATTR_ANCESTOR           => 1000;
165 use constant RNGP_ATTR_CONFLICT                   => 1001;
166 use constant RNGP_ATTRIBUTE_CHILDREN              => 1002;
167 use constant RNGP_ATTRIBUTE_CONTENT               => 1003;
168 use constant RNGP_ATTRIBUTE_EMPTY                 => 1004;
169 use constant RNGP_ATTRIBUTE_NOOP                  => 1005;
170 use constant RNGP_CHOICE_CONTENT                  => 1006;
171 use constant RNGP_CHOICE_EMPTY                    => 1007;
172 use constant RNGP_CREATE_FAILURE                  => 1008;
173 use constant RNGP_DATA_CONTENT                    => 1009;
174 use constant RNGP_DEF_CHOICE_AND_INTERLEAVE       => 1010;
175 use constant RNGP_DEFINE_CREATE_FAILED            => 1011;
176 use constant RNGP_DEFINE_EMPTY                    => 1012;
177 use constant RNGP_DEFINE_MISSING                  => 1013;
178 use constant RNGP_DEFINE_NAME_MISSING             => 1014;
179 use constant RNGP_ELEM_CONTENT_EMPTY              => 1015;
180 use constant RNGP_ELEM_CONTENT_ERROR              => 1016;
181 use constant RNGP_ELEMENT_EMPTY                   => 1017;
182 use constant RNGP_ELEMENT_CONTENT                 => 1018;
183 use constant RNGP_ELEMENT_NAME                    => 1019;
184 use constant RNGP_ELEMENT_NO_CONTENT              => 1020;
185 use constant RNGP_ELEM_TEXT_CONFLICT              => 1021;
186 use constant RNGP_EMPTY                           => 1022;
187 use constant RNGP_EMPTY_CONSTRUCT                 => 1023;
188 use constant RNGP_EMPTY_CONTENT                   => 1024;
189 use constant RNGP_EMPTY_NOT_EMPTY                 => 1025;
190 use constant RNGP_ERROR_TYPE_LIB                  => 1026;
191 use constant RNGP_EXCEPT_EMPTY                    => 1027;
192 use constant RNGP_EXCEPT_MISSING                  => 1028;
193 use constant RNGP_EXCEPT_MULTIPLE                 => 1029;
194 use constant RNGP_EXCEPT_NO_CONTENT               => 1030;
195 use constant RNGP_EXTERNALREF_EMTPY               => 1031;
196 use constant RNGP_EXTERNAL_REF_FAILURE            => 1032;
197 use constant RNGP_EXTERNALREF_RECURSE             => 1033;
198 use constant RNGP_FORBIDDEN_ATTRIBUTE             => 1034;
199 use constant RNGP_FOREIGN_ELEMENT                 => 1035;
200 use constant RNGP_GRAMMAR_CONTENT                 => 1036;
201 use constant RNGP_GRAMMAR_EMPTY                   => 1037;
202 use constant RNGP_GRAMMAR_MISSING                 => 1038;
203 use constant RNGP_GRAMMAR_NO_START                => 1039;
204 use constant RNGP_GROUP_ATTR_CONFLICT             => 1040;
205 use constant RNGP_HREF_ERROR                      => 1041;
206 use constant RNGP_INCLUDE_EMPTY                   => 1042;
207 use constant RNGP_INCLUDE_FAILURE                 => 1043;
208 use constant RNGP_INCLUDE_RECURSE                 => 1044;
209 use constant RNGP_INTERLEAVE_ADD                  => 1045;
210 use constant RNGP_INTERLEAVE_CREATE_FAILED        => 1046;
211 use constant RNGP_INTERLEAVE_EMPTY                => 1047;
212 use constant RNGP_INTERLEAVE_NO_CONTENT           => 1048;
213 use constant RNGP_INVALID_DEFINE_NAME             => 1049;
214 use constant RNGP_INVALID_URI                     => 1050;
215 use constant RNGP_INVALID_VALUE                   => 1051;
216 use constant RNGP_MISSING_HREF                    => 1052;
217 use constant RNGP_NAME_MISSING                    => 1053;
218 use constant RNGP_NEED_COMBINE                    => 1054;
219 use constant RNGP_NOTALLOWED_NOT_EMPTY            => 1055;
220 use constant RNGP_NSNAME_ATTR_ANCESTOR            => 1056;
221 use constant RNGP_NSNAME_NO_NS                    => 1057;
222 use constant RNGP_PARAM_FORBIDDEN                 => 1058;
223 use constant RNGP_PARAM_NAME_MISSING              => 1059;
224 use constant RNGP_PARENTREF_CREATE_FAILED         => 1060;
225 use constant RNGP_PARENTREF_NAME_INVALID          => 1061;
226 use constant RNGP_PARENTREF_NO_NAME               => 1062;
227 use constant RNGP_PARENTREF_NO_PARENT             => 1063;
228 use constant RNGP_PARENTREF_NOT_EMPTY             => 1064;
229 use constant RNGP_PARSE_ERROR                     => 1065;
230 use constant RNGP_PAT_ANYNAME_EXCEPT_ANYNAME      => 1066;
231 use constant RNGP_PAT_ATTR_ATTR                   => 1067;
232 use constant RNGP_PAT_ATTR_ELEM                   => 1068;
233 use constant RNGP_PAT_DATA_EXCEPT_ATTR            => 1069;
234 use constant RNGP_PAT_DATA_EXCEPT_ELEM            => 1070;
235 use constant RNGP_PAT_DATA_EXCEPT_EMPTY           => 1071;
236 use constant RNGP_PAT_DATA_EXCEPT_GROUP           => 1072;
237 use constant RNGP_PAT_DATA_EXCEPT_INTERLEAVE      => 1073;
238 use constant RNGP_PAT_DATA_EXCEPT_LIST            => 1074;
239 use constant RNGP_PAT_DATA_EXCEPT_ONEMORE         => 1075;
240 use constant RNGP_PAT_DATA_EXCEPT_REF             => 1076;
241 use constant RNGP_PAT_DATA_EXCEPT_TEXT            => 1077;
242 use constant RNGP_PAT_LIST_ATTR                   => 1078;
243 use constant RNGP_PAT_LIST_ELEM                   => 1079;
244 use constant RNGP_PAT_LIST_INTERLEAVE             => 1080;
245 use constant RNGP_PAT_LIST_LIST                   => 1081;
246 use constant RNGP_PAT_LIST_REF                    => 1082;
247 use constant RNGP_PAT_LIST_TEXT                   => 1083;
248 use constant RNGP_PAT_NSNAME_EXCEPT_ANYNAME       => 1084;
249 use constant RNGP_PAT_NSNAME_EXCEPT_NSNAME        => 1085;
250 use constant RNGP_PAT_ONEMORE_GROUP_ATTR          => 1086;
251 use constant RNGP_PAT_ONEMORE_INTERLEAVE_ATTR     => 1087;
252 use constant RNGP_PAT_START_ATTR                  => 1088;
253 use constant RNGP_PAT_START_DATA                  => 1089;
254 use constant RNGP_PAT_START_EMPTY                 => 1090;
255 use constant RNGP_PAT_START_GROUP                 => 1091;
256 use constant RNGP_PAT_START_INTERLEAVE            => 1092;
257 use constant RNGP_PAT_START_LIST                  => 1093;
258 use constant RNGP_PAT_START_ONEMORE               => 1094;
259 use constant RNGP_PAT_START_TEXT                  => 1095;
260 use constant RNGP_PAT_START_VALUE                 => 1096;
261 use constant RNGP_PREFIX_UNDEFINED                => 1097;
262 use constant RNGP_REF_CREATE_FAILED               => 1098;
263 use constant RNGP_REF_CYCLE                       => 1099;
264 use constant RNGP_REF_NAME_INVALID                => 1100;
265 use constant RNGP_REF_NO_DEF                      => 1101;
266 use constant RNGP_REF_NO_NAME                     => 1102;
267 use constant RNGP_REF_NOT_EMPTY                   => 1103;
268 use constant RNGP_START_CHOICE_AND_INTERLEAVE     => 1104;
269 use constant RNGP_START_CONTENT                   => 1105;
270 use constant RNGP_START_EMPTY                     => 1106;
271 use constant RNGP_START_MISSING                   => 1107;
272 use constant RNGP_TEXT_EXPECTED                   => 1108;
273 use constant RNGP_TEXT_HAS_CHILD                  => 1109;
274 use constant RNGP_TYPE_MISSING                    => 1110;
275 use constant RNGP_TYPE_NOT_FOUND                  => 1111;
276 use constant RNGP_TYPE_VALUE                      => 1112;
277 use constant RNGP_UNKNOWN_ATTRIBUTE               => 1113;
278 use constant RNGP_UNKNOWN_COMBINE                 => 1114;
279 use constant RNGP_UNKNOWN_CONSTRUCT               => 1115;
280 use constant RNGP_UNKNOWN_TYPE_LIB                => 1116;
281 use constant RNGP_URI_FRAGMENT                    => 1117;
282 use constant RNGP_URI_NOT_ABSOLUTE                => 1118;
283 use constant RNGP_VALUE_EMPTY                     => 1119;
284 use constant RNGP_VALUE_NO_CONTENT                => 1120;
285 use constant RNGP_XMLNS_NAME                      => 1121;
286 use constant RNGP_XML_NS                          => 1122;
287 use constant XPATH_EXPRESSION_OK                  => 1200;
288 use constant XPATH_NUMBER_ERROR                   => 1201;
289 use constant XPATH_UNFINISHED_LITERAL_ERROR       => 1202;
290 use constant XPATH_START_LITERAL_ERROR            => 1203;
291 use constant XPATH_VARIABLE_REF_ERROR             => 1204;
292 use constant XPATH_UNDEF_VARIABLE_ERROR           => 1205;
293 use constant XPATH_INVALID_PREDICATE_ERROR        => 1206;
294 use constant XPATH_EXPR_ERROR                     => 1207;
295 use constant XPATH_UNCLOSED_ERROR                 => 1208;
296 use constant XPATH_UNKNOWN_FUNC_ERROR             => 1209;
297 use constant XPATH_INVALID_OPERAND                => 1210;
298 use constant XPATH_INVALID_TYPE                   => 1211;
299 use constant XPATH_INVALID_ARITY                  => 1212;
300 use constant XPATH_INVALID_CTXT_SIZE              => 1213;
301 use constant XPATH_INVALID_CTXT_POSITION          => 1214;
302 use constant XPATH_MEMORY_ERROR                   => 1215;
303 use constant XPTR_SYNTAX_ERROR                    => 1216;
304 use constant XPTR_RESOURCE_ERROR                  => 1217;
305 use constant XPTR_SUB_RESOURCE_ERROR              => 1218;
306 use constant XPATH_UNDEF_PREFIX_ERROR             => 1219;
307 use constant XPATH_ENCODING_ERROR                 => 1220;
308 use constant XPATH_INVALID_CHAR_ERROR             => 1221;
309 use constant TREE_INVALID_HEX                     => 1300;
310 use constant TREE_INVALID_DEC                     => 1301;
311 use constant TREE_UNTERMINATED_ENTITY             => 1302;
312 use constant SAVE_NOT_UTF8                        => 1400;
313 use constant SAVE_CHAR_INVALID                    => 1401;
314 use constant SAVE_NO_DOCTYPE                      => 1402;
315 use constant SAVE_UNKNOWN_ENCODING                => 1403;
316 use constant REGEXP_COMPILE_ERROR                 => 1450;
317 use constant IO_UNKNOWN                           => 1500;
318 use constant IO_EACCES                            => 1501;
319 use constant IO_EAGAIN                            => 1502;
320 use constant IO_EBADF                             => 1503;
321 use constant IO_EBADMSG                           => 1504;
322 use constant IO_EBUSY                             => 1505;
323 use constant IO_ECANCELED                         => 1506;
324 use constant IO_ECHILD                            => 1507;
325 use constant IO_EDEADLK                           => 1508;
326 use constant IO_EDOM                              => 1509;
327 use constant IO_EEXIST                            => 1510;
328 use constant IO_EFAULT                            => 1511;
329 use constant IO_EFBIG                             => 1512;
330 use constant IO_EINPROGRESS                       => 1513;
331 use constant IO_EINTR                             => 1514;
332 use constant IO_EINVAL                            => 1515;
333 use constant IO_EIO                               => 1516;
334 use constant IO_EISDIR                            => 1517;
335 use constant IO_EMFILE                            => 1518;
336 use constant IO_EMLINK                            => 1519;
337 use constant IO_EMSGSIZE                          => 1520;
338 use constant IO_ENAMETOOLONG                      => 1521;
339 use constant IO_ENFILE                            => 1522;
340 use constant IO_ENODEV                            => 1523;
341 use constant IO_ENOENT                            => 1524;
342 use constant IO_ENOEXEC                           => 1525;
343 use constant IO_ENOLCK                            => 1526;
344 use constant IO_ENOMEM                            => 1527;
345 use constant IO_ENOSPC                            => 1528;
346 use constant IO_ENOSYS                            => 1529;
347 use constant IO_ENOTDIR                           => 1530;
348 use constant IO_ENOTEMPTY                         => 1531;
349 use constant IO_ENOTSUP                           => 1532;
350 use constant IO_ENOTTY                            => 1533;
351 use constant IO_ENXIO                             => 1534;
352 use constant IO_EPERM                             => 1535;
353 use constant IO_EPIPE                             => 1536;
354 use constant IO_ERANGE                            => 1537;
355 use constant IO_EROFS                             => 1538;
356 use constant IO_ESPIPE                            => 1539;
357 use constant IO_ESRCH                             => 1540;
358 use constant IO_ETIMEDOUT                         => 1541;
359 use constant IO_EXDEV                             => 1542;
360 use constant IO_NETWORK_ATTEMPT                   => 1543;
361 use constant IO_ENCODER                           => 1544;
362 use constant IO_FLUSH                             => 1545;
363 use constant IO_WRITE                             => 1546;
364 use constant IO_NO_INPUT                          => 1547;
365 use constant IO_BUFFER_FULL                       => 1548;
366 use constant IO_LOAD_ERROR                        => 1549;
367 use constant IO_ENOTSOCK                          => 1550;
368 use constant IO_EISCONN                           => 1551;
369 use constant IO_ECONNREFUSED                      => 1552;
370 use constant IO_ENETUNREACH                       => 1553;
371 use constant IO_EADDRINUSE                        => 1554;
372 use constant IO_EALREADY                          => 1555;
373 use constant IO_EAFNOSUPPORT                      => 1556;
374 use constant XINCLUDE_RECURSION                   => 1600;
375 use constant XINCLUDE_PARSE_VALUE                 => 1601;
376 use constant XINCLUDE_ENTITY_DEF_MISMATCH         => 1602;
377 use constant XINCLUDE_NO_HREF                     => 1603;
378 use constant XINCLUDE_NO_FALLBACK                 => 1604;
379 use constant XINCLUDE_HREF_URI                    => 1605;
380 use constant XINCLUDE_TEXT_FRAGMENT               => 1606;
381 use constant XINCLUDE_TEXT_DOCUMENT               => 1607;
382 use constant XINCLUDE_INVALID_CHAR                => 1608;
383 use constant XINCLUDE_BUILD_FAILED                => 1609;
384 use constant XINCLUDE_UNKNOWN_ENCODING            => 1610;
385 use constant XINCLUDE_MULTIPLE_ROOT               => 1611;
386 use constant XINCLUDE_XPTR_FAILED                 => 1612;
387 use constant XINCLUDE_XPTR_RESULT                 => 1613;
388 use constant XINCLUDE_INCLUDE_IN_INCLUDE          => 1614;
389 use constant XINCLUDE_FALLBACKS_IN_INCLUDE        => 1615;
390 use constant XINCLUDE_FALLBACK_NOT_IN_INCLUDE     => 1616;
391 use constant CATALOG_MISSING_ATTR                 => 1650;
392 use constant CATALOG_ENTRY_BROKEN                 => 1651;
393 use constant CATALOG_PREFER_VALUE                 => 1652;
394 use constant CATALOG_NOT_CATALOG                  => 1653;
395 use constant CATALOG_RECURSION                    => 1654;
396 use constant SCHEMAP_PREFIX_UNDEFINED             => 1700;
397 use constant SCHEMAP_ATTRFORMDEFAULT_VALUE        => 1701;
398 use constant SCHEMAP_ATTRGRP_NONAME_NOREF         => 1702;
399 use constant SCHEMAP_ATTR_NONAME_NOREF            => 1703;
400 use constant SCHEMAP_COMPLEXTYPE_NONAME_NOREF     => 1704;
401 use constant SCHEMAP_ELEMFORMDEFAULT_VALUE        => 1705;
402 use constant SCHEMAP_ELEM_NONAME_NOREF            => 1706;
403 use constant SCHEMAP_EXTENSION_NO_BASE            => 1707;
404 use constant SCHEMAP_FACET_NO_VALUE               => 1708;
405 use constant SCHEMAP_FAILED_BUILD_IMPORT          => 1709;
406 use constant SCHEMAP_GROUP_NONAME_NOREF           => 1710;
407 use constant SCHEMAP_IMPORT_NAMESPACE_NOT_URI     => 1711;
408 use constant SCHEMAP_IMPORT_REDEFINE_NSNAME       => 1712;
409 use constant SCHEMAP_IMPORT_SCHEMA_NOT_URI        => 1713;
410 use constant SCHEMAP_INVALID_BOOLEAN              => 1714;
411 use constant SCHEMAP_INVALID_ENUM                 => 1715;
412 use constant SCHEMAP_INVALID_FACET                => 1716;
413 use constant SCHEMAP_INVALID_FACET_VALUE          => 1717;
414 use constant SCHEMAP_INVALID_MAXOCCURS            => 1718;
415 use constant SCHEMAP_INVALID_MINOCCURS            => 1719;
416 use constant SCHEMAP_INVALID_REF_AND_SUBTYPE      => 1720;
417 use constant SCHEMAP_INVALID_WHITE_SPACE          => 1721;
418 use constant SCHEMAP_NOATTR_NOREF                 => 1722;
419 use constant SCHEMAP_NOTATION_NO_NAME             => 1723;
420 use constant SCHEMAP_NOTYPE_NOREF                 => 1724;
421 use constant SCHEMAP_REF_AND_SUBTYPE              => 1725;
422 use constant SCHEMAP_RESTRICTION_NONAME_NOREF     => 1726;
423 use constant SCHEMAP_SIMPLETYPE_NONAME            => 1727;
424 use constant SCHEMAP_TYPE_AND_SUBTYPE             => 1728;
425 use constant SCHEMAP_UNKNOWN_ALL_CHILD            => 1729;
426 use constant SCHEMAP_UNKNOWN_ANYATTRIBUTE_CHILD   => 1730;
427 use constant SCHEMAP_UNKNOWN_ATTR_CHILD           => 1731;
428 use constant SCHEMAP_UNKNOWN_ATTRGRP_CHILD        => 1732;
429 use constant SCHEMAP_UNKNOWN_ATTRIBUTE_GROUP      => 1733;
430 use constant SCHEMAP_UNKNOWN_BASE_TYPE            => 1734;
431 use constant SCHEMAP_UNKNOWN_CHOICE_CHILD         => 1735;
432 use constant SCHEMAP_UNKNOWN_COMPLEXCONTENT_CHILD => 1736;
433 use constant SCHEMAP_UNKNOWN_COMPLEXTYPE_CHILD    => 1737;
434 use constant SCHEMAP_UNKNOWN_ELEM_CHILD           => 1738;
435 use constant SCHEMAP_UNKNOWN_EXTENSION_CHILD      => 1739;
436 use constant SCHEMAP_UNKNOWN_FACET_CHILD          => 1740;
437 use constant SCHEMAP_UNKNOWN_FACET_TYPE           => 1741;
438 use constant SCHEMAP_UNKNOWN_GROUP_CHILD          => 1742;
439 use constant SCHEMAP_UNKNOWN_IMPORT_CHILD         => 1743;
440 use constant SCHEMAP_UNKNOWN_LIST_CHILD           => 1744;
441 use constant SCHEMAP_UNKNOWN_NOTATION_CHILD       => 1745;
442 use constant SCHEMAP_UNKNOWN_PROCESSCONTENT_CHILD => 1746;
443 use constant SCHEMAP_UNKNOWN_REF                  => 1747;
444 use constant SCHEMAP_UNKNOWN_RESTRICTION_CHILD    => 1748;
445 use constant SCHEMAP_UNKNOWN_SCHEMAS_CHILD        => 1749;
446 use constant SCHEMAP_UNKNOWN_SEQUENCE_CHILD       => 1750;
447 use constant SCHEMAP_UNKNOWN_SIMPLECONTENT_CHILD  => 1751;
448 use constant SCHEMAP_UNKNOWN_SIMPLETYPE_CHILD     => 1752;
449 use constant SCHEMAP_UNKNOWN_TYPE                 => 1753;
450 use constant SCHEMAP_UNKNOWN_UNION_CHILD          => 1754;
451 use constant SCHEMAP_ELEM_DEFAULT_FIXED           => 1755;
452 use constant SCHEMAP_REGEXP_INVALID               => 1756;
453 use constant SCHEMAP_FAILED_LOAD                  => 1756;
454 use constant SCHEMAP_NOTHING_TO_PARSE             => 1757;
455 use constant SCHEMAP_NOROOT                       => 1758;
456 use constant SCHEMAP_REDEFINED_GROUP              => 1759;
457 use constant SCHEMAP_REDEFINED_TYPE               => 1760;
458 use constant SCHEMAP_REDEFINED_ELEMENT            => 1761;
459 use constant SCHEMAP_REDEFINED_ATTRGROUP          => 1762;
460 use constant SCHEMAP_REDEFINED_ATTR               => 1763;
461 use constant SCHEMAP_REDEFINED_NOTATION           => 1764;
462 use constant SCHEMAP_FAILED_PARSE                 => 1765;
463 use constant SCHEMAV_NOROOT                       => 1800;
464 use constant SCHEMAV_UNDECLAREDELEM               => 1801;
465 use constant SCHEMAV_NOTTOPLEVEL                  => 1802;
466 use constant SCHEMAV_MISSING                      => 1803;
467 use constant SCHEMAV_WRONGELEM                    => 1804;
468 use constant SCHEMAV_NOTYPE                       => 1805;
469 use constant SCHEMAV_NOROLLBACK                   => 1806;
470 use constant SCHEMAV_ISABSTRACT                   => 1807;
471 use constant SCHEMAV_NOTEMPTY                     => 1808;
472 use constant SCHEMAV_ELEMCONT                     => 1809;
473 use constant SCHEMAV_HAVEDEFAULT                  => 1810;
474 use constant SCHEMAV_NOTNILLABLE                  => 1811;
475 use constant SCHEMAV_EXTRACONTENT                 => 1812;
476 use constant SCHEMAV_INVALIDATTR                  => 1813;
477 use constant SCHEMAV_INVALIDELEM                  => 1814;
478 use constant SCHEMAV_NOTDETERMINIST               => 1815;
479 use constant SCHEMAV_CONSTRUCT                    => 1816;
480 use constant SCHEMAV_INTERNAL                     => 1817;
481 use constant SCHEMAV_NOTSIMPLE                    => 1818;
482 use constant SCHEMAV_ATTRUNKNOWN                  => 1819;
483 use constant SCHEMAV_ATTRINVALID                  => 1820;
484 use constant SCHEMAV_VALUE                        => 1821;
485 use constant SCHEMAV_FACET                        => 1822;
486 use constant XPTR_UNKNOWN_SCHEME                  => 1900;
487 use constant XPTR_CHILDSEQ_START                  => 1901;
488 use constant XPTR_EVAL_FAILED                     => 1902;
489 use constant XPTR_EXTRA_OBJECTS                   => 1903;
490 use constant C14N_CREATE_CTXT                     => 1950;
491 use constant C14N_REQUIRES_UTF8                   => 1951;
492 use constant C14N_CREATE_STACK                    => 1952;
493 use constant C14N_INVALID_NODE                    => 1953;
494 use constant FTP_PASV_ANSWER                      => 2000;
495 use constant FTP_EPSV_ANSWER                      => 2001;
496 use constant FTP_ACCNT                            => 2002;
497 use constant HTTP_URL_SYNTAX                      => 2020;
498 use constant HTTP_USE_IP                          => 2021;
499 use constant HTTP_UNKNOWN_HOST                   => 2022;
500
501 1;