Subversion
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
svn_error_codes.h
Go to the documentation of this file.
1 /**
2  * @copyright
3  * ====================================================================
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements. See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership. The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License. You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied. See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  * ====================================================================
21  * @endcopyright
22  *
23  * @file svn_error_codes.h
24  * @brief Subversion error codes.
25  */
26 
27 /* What's going on here?
28 
29  In order to define error codes and their associated description
30  strings in the same place, we overload the SVN_ERRDEF() macro with
31  two definitions below. Both take two arguments, an error code name
32  and a description string. One definition of the macro just throws
33  away the string and defines enumeration constants using the error
34  code names -- that definition is used by the header file that
35  exports error codes to the rest of Subversion. The other
36  definition creates a static table mapping the enum codes to their
37  corresponding strings -- that definition is used by the C file that
38  implements svn_strerror().
39 
40  The header and C files both include this file, using #defines to
41  control which version of the macro they get.
42 */
43 
44 
45 /* Process this file if we're building an error array, or if we have
46  not defined the enumerated constants yet. */
47 #if defined(SVN_ERROR_BUILD_ARRAY) || !defined(SVN_ERROR_ENUM_DEFINED)
48 
49 /* Note: despite lacking double underscores in its name, the macro
50  SVN_ERROR_BUILD_ARRAY is an implementation detail of Subversion and not
51  a public API. */
52 
53 
54 #include <apr_errno.h> /* APR's error system */
55 
56 #ifdef __cplusplus
57 extern "C" {
58 #endif /* __cplusplus */
59 
60 #ifndef DOXYGEN_SHOULD_SKIP_THIS
61 
62 #if defined(SVN_ERROR_BUILD_ARRAY)
63 
64 #define SVN_ERROR_START \
65  static const err_defn error_table[] = { \
66  { SVN_WARNING, "SVN_WARNING", "Warning" },
67 #define SVN_ERRDEF(num, offset, str) { num, #num, str },
68 #define SVN_ERROR_END { 0, NULL, NULL } };
69 
70 #elif !defined(SVN_ERROR_ENUM_DEFINED)
71 
72 #define SVN_ERROR_START \
73  typedef enum svn_errno_t { \
74  SVN_WARNING = APR_OS_START_USERERR + 1,
75 #define SVN_ERRDEF(num, offset, str) /** str */ num = offset,
76 #define SVN_ERROR_END SVN_ERR_LAST } svn_errno_t;
77 
78 #define SVN_ERROR_ENUM_DEFINED
79 
80 #endif
81 
82 /* Define custom Subversion error numbers, in the range reserved for
83  that in APR: from APR_OS_START_USERERR to APR_OS_START_SYSERR (see
84  apr_errno.h).
85 
86  Error numbers are divided into categories of up to 5000 errors
87  each. Since we're dividing up the APR user error space, which has
88  room for 500,000 errors, we can have up to 100 categories.
89  Categories are fixed-size; if a category has fewer than 5000
90  errors, then it just ends with a range of unused numbers.
91 
92  To maintain binary compatibility, please observe these guidelines:
93 
94  - When adding a new error, always add on the end of the
95  appropriate category, so that the real values of existing
96  errors are not changed.
97 
98  - When deleting an error, leave a placeholder comment indicating
99  the offset, again so that the values of other errors are not
100  perturbed.
101 */
102 
103 #define SVN_ERR_CATEGORY_SIZE 5000
104 
105 /* Leave one category of room at the beginning, for SVN_WARNING and
106  any other such beasts we might create in the future. */
107 #define SVN_ERR_BAD_CATEGORY_START (APR_OS_START_USERERR \
108  + ( 1 * SVN_ERR_CATEGORY_SIZE))
109 #define SVN_ERR_XML_CATEGORY_START (APR_OS_START_USERERR \
110  + ( 2 * SVN_ERR_CATEGORY_SIZE))
111 #define SVN_ERR_IO_CATEGORY_START (APR_OS_START_USERERR \
112  + ( 3 * SVN_ERR_CATEGORY_SIZE))
113 #define SVN_ERR_STREAM_CATEGORY_START (APR_OS_START_USERERR \
114  + ( 4 * SVN_ERR_CATEGORY_SIZE))
115 #define SVN_ERR_NODE_CATEGORY_START (APR_OS_START_USERERR \
116  + ( 5 * SVN_ERR_CATEGORY_SIZE))
117 #define SVN_ERR_ENTRY_CATEGORY_START (APR_OS_START_USERERR \
118  + ( 6 * SVN_ERR_CATEGORY_SIZE))
119 #define SVN_ERR_WC_CATEGORY_START (APR_OS_START_USERERR \
120  + ( 7 * SVN_ERR_CATEGORY_SIZE))
121 #define SVN_ERR_FS_CATEGORY_START (APR_OS_START_USERERR \
122  + ( 8 * SVN_ERR_CATEGORY_SIZE))
123 #define SVN_ERR_REPOS_CATEGORY_START (APR_OS_START_USERERR \
124  + ( 9 * SVN_ERR_CATEGORY_SIZE))
125 #define SVN_ERR_RA_CATEGORY_START (APR_OS_START_USERERR \
126  + (10 * SVN_ERR_CATEGORY_SIZE))
127 #define SVN_ERR_RA_DAV_CATEGORY_START (APR_OS_START_USERERR \
128  + (11 * SVN_ERR_CATEGORY_SIZE))
129 #define SVN_ERR_RA_LOCAL_CATEGORY_START (APR_OS_START_USERERR \
130  + (12 * SVN_ERR_CATEGORY_SIZE))
131 #define SVN_ERR_SVNDIFF_CATEGORY_START (APR_OS_START_USERERR \
132  + (13 * SVN_ERR_CATEGORY_SIZE))
133 #define SVN_ERR_APMOD_CATEGORY_START (APR_OS_START_USERERR \
134  + (14 * SVN_ERR_CATEGORY_SIZE))
135 #define SVN_ERR_CLIENT_CATEGORY_START (APR_OS_START_USERERR \
136  + (15 * SVN_ERR_CATEGORY_SIZE))
137 #define SVN_ERR_MISC_CATEGORY_START (APR_OS_START_USERERR \
138  + (16 * SVN_ERR_CATEGORY_SIZE))
139 #define SVN_ERR_CL_CATEGORY_START (APR_OS_START_USERERR \
140  + (17 * SVN_ERR_CATEGORY_SIZE))
141 #define SVN_ERR_RA_SVN_CATEGORY_START (APR_OS_START_USERERR \
142  + (18 * SVN_ERR_CATEGORY_SIZE))
143 #define SVN_ERR_AUTHN_CATEGORY_START (APR_OS_START_USERERR \
144  + (19 * SVN_ERR_CATEGORY_SIZE))
145 #define SVN_ERR_AUTHZ_CATEGORY_START (APR_OS_START_USERERR \
146  + (20 * SVN_ERR_CATEGORY_SIZE))
147 #define SVN_ERR_DIFF_CATEGORY_START (APR_OS_START_USERERR \
148  + (21 * SVN_ERR_CATEGORY_SIZE))
149 #define SVN_ERR_RA_SERF_CATEGORY_START (APR_OS_START_USERERR \
150  + (22 * SVN_ERR_CATEGORY_SIZE))
151 #define SVN_ERR_MALFUNC_CATEGORY_START (APR_OS_START_USERERR \
152  + (23 * SVN_ERR_CATEGORY_SIZE))
153 #define SVN_ERR_X509_CATEGORY_START (APR_OS_START_USERERR \
154  + (24 * SVN_ERR_CATEGORY_SIZE))
155 
156 #endif /* DOXYGEN_SHOULD_SKIP_THIS */
157 
158 /** Collection of Subversion error code values, located within the
159  * APR user error space. */
160 SVN_ERROR_START
161 
162  /* validation ("BAD_FOO") errors */
163 
164  SVN_ERRDEF(SVN_ERR_BAD_CONTAINING_POOL,
165  SVN_ERR_BAD_CATEGORY_START + 0,
166  "Bad parent pool passed to svn_make_pool()")
167 
168  SVN_ERRDEF(SVN_ERR_BAD_FILENAME,
169  SVN_ERR_BAD_CATEGORY_START + 1,
170  "Bogus filename")
171 
172  SVN_ERRDEF(SVN_ERR_BAD_URL,
173  SVN_ERR_BAD_CATEGORY_START + 2,
174  "Bogus URL")
175 
176  SVN_ERRDEF(SVN_ERR_BAD_DATE,
177  SVN_ERR_BAD_CATEGORY_START + 3,
178  "Bogus date")
179 
180  SVN_ERRDEF(SVN_ERR_BAD_MIME_TYPE,
181  SVN_ERR_BAD_CATEGORY_START + 4,
182  "Bogus mime-type")
183 
184  /** @since New in 1.5.
185  *
186  * Note that there was an unused slot sitting here at
187  * SVN_ERR_BAD_CATEGORY_START + 5, so error codes after this aren't
188  * necessarily "New in 1.5" just because they come later.
189  */
190  SVN_ERRDEF(SVN_ERR_BAD_PROPERTY_VALUE,
191  SVN_ERR_BAD_CATEGORY_START + 5,
192  "Wrong or unexpected property value")
193 
195  SVN_ERR_BAD_CATEGORY_START + 6,
196  "Version file format not correct")
197 
198  SVN_ERRDEF(SVN_ERR_BAD_RELATIVE_PATH,
199  SVN_ERR_BAD_CATEGORY_START + 7,
200  "Path is not an immediate child of the specified directory")
201 
202  SVN_ERRDEF(SVN_ERR_BAD_UUID,
203  SVN_ERR_BAD_CATEGORY_START + 8,
204  "Bogus UUID")
205 
206  /** @since New in 1.6. */
207  SVN_ERRDEF(SVN_ERR_BAD_CONFIG_VALUE,
208  SVN_ERR_BAD_CATEGORY_START + 9,
209  "Invalid configuration value")
210 
212  SVN_ERR_BAD_CATEGORY_START + 10,
213  "Bogus server specification")
214 
215  SVN_ERRDEF(SVN_ERR_BAD_CHECKSUM_KIND,
216  SVN_ERR_BAD_CATEGORY_START + 11,
217  "Unsupported checksum type")
218 
219  SVN_ERRDEF(SVN_ERR_BAD_CHECKSUM_PARSE,
220  SVN_ERR_BAD_CATEGORY_START + 12,
221  "Invalid character in hex checksum")
222 
223  /** @since New in 1.7. */
224  SVN_ERRDEF(SVN_ERR_BAD_TOKEN,
225  SVN_ERR_BAD_CATEGORY_START + 13,
226  "Unknown string value of token")
227 
228  /** @since New in 1.7. */
229  SVN_ERRDEF(SVN_ERR_BAD_CHANGELIST_NAME,
230  SVN_ERR_BAD_CATEGORY_START + 14,
231  "Invalid changelist name")
232 
233  /** @since New in 1.8. */
234  SVN_ERRDEF(SVN_ERR_BAD_ATOMIC,
235  SVN_ERR_BAD_CATEGORY_START + 15,
236  "Invalid atomic")
237 
238  /** @since New in 1.9. */
240  SVN_ERR_BAD_CATEGORY_START + 16,
241  "Invalid compression method")
242 
243  /* xml errors */
244 
245  SVN_ERRDEF(SVN_ERR_XML_ATTRIB_NOT_FOUND,
246  SVN_ERR_XML_CATEGORY_START + 0,
247  "No such XML tag attribute")
248 
249  SVN_ERRDEF(SVN_ERR_XML_MISSING_ANCESTRY,
250  SVN_ERR_XML_CATEGORY_START + 1,
251  "<delta-pkg> is missing ancestry")
252 
253  SVN_ERRDEF(SVN_ERR_XML_UNKNOWN_ENCODING,
254  SVN_ERR_XML_CATEGORY_START + 2,
255  "Unrecognized binary data encoding; can't decode")
256 
257  SVN_ERRDEF(SVN_ERR_XML_MALFORMED,
258  SVN_ERR_XML_CATEGORY_START + 3,
259  "XML data was not well-formed")
260 
261  SVN_ERRDEF(SVN_ERR_XML_UNESCAPABLE_DATA,
262  SVN_ERR_XML_CATEGORY_START + 4,
263  "Data cannot be safely XML-escaped")
264 
265  /** @since New in 1.9. */
267  SVN_ERR_XML_CATEGORY_START + 5,
268  "Unexpected XML element found")
269 
270  /* io errors */
271 
272  SVN_ERRDEF(SVN_ERR_IO_INCONSISTENT_EOL,
273  SVN_ERR_IO_CATEGORY_START + 0,
274  "Inconsistent line ending style")
275 
276  SVN_ERRDEF(SVN_ERR_IO_UNKNOWN_EOL,
277  SVN_ERR_IO_CATEGORY_START + 1,
278  "Unrecognized line ending style")
279 
280  /** @deprecated Unused, slated for removal in the next major release. */
281  SVN_ERRDEF(SVN_ERR_IO_CORRUPT_EOL,
282  SVN_ERR_IO_CATEGORY_START + 2,
283  "Line endings other than expected")
284 
286  SVN_ERR_IO_CATEGORY_START + 3,
287  "Ran out of unique names")
288 
289  /** @deprecated Unused, slated for removal in the next major release. */
290  SVN_ERRDEF(SVN_ERR_IO_PIPE_FRAME_ERROR,
291  SVN_ERR_IO_CATEGORY_START + 4,
292  "Framing error in pipe protocol")
293 
294  /** @deprecated Unused, slated for removal in the next major release. */
295  SVN_ERRDEF(SVN_ERR_IO_PIPE_READ_ERROR,
296  SVN_ERR_IO_CATEGORY_START + 5,
297  "Read error in pipe")
298 
299  SVN_ERRDEF(SVN_ERR_IO_WRITE_ERROR,
300  SVN_ERR_IO_CATEGORY_START + 6,
301  "Write error")
302 
303  /** @since New in 1.7. */
304  SVN_ERRDEF(SVN_ERR_IO_PIPE_WRITE_ERROR,
305  SVN_ERR_IO_CATEGORY_START + 7,
306  "Write error in pipe")
307 
308  /* stream errors */
309 
311  SVN_ERR_STREAM_CATEGORY_START + 0,
312  "Unexpected EOF on stream")
313 
315  SVN_ERR_STREAM_CATEGORY_START + 1,
316  "Malformed stream data")
317 
319  SVN_ERR_STREAM_CATEGORY_START + 2,
320  "Unrecognized stream data")
321 
322  /** @since New in 1.7. */
324  SVN_ERR_STREAM_CATEGORY_START + 3,
325  "Stream doesn't support seeking")
326 
327  /** Since New in 1.9. */
328  SVN_ERRDEF(SVN_ERR_STREAM_NOT_SUPPORTED,
329  SVN_ERR_STREAM_CATEGORY_START + 4,
330  "Stream doesn't support this capability")
331 
332  /* node errors */
333 
334  SVN_ERRDEF(SVN_ERR_NODE_UNKNOWN_KIND,
335  SVN_ERR_NODE_CATEGORY_START + 0,
336  "Unknown svn_node_kind")
337 
338  SVN_ERRDEF(SVN_ERR_NODE_UNEXPECTED_KIND,
339  SVN_ERR_NODE_CATEGORY_START + 1,
340  "Unexpected node kind found")
341 
342  /* entry errors */
343 
344  SVN_ERRDEF(SVN_ERR_ENTRY_NOT_FOUND,
345  SVN_ERR_ENTRY_CATEGORY_START + 0,
346  "Can't find an entry")
347 
348  /* UNUSED error slot: + 1 */
349 
350  SVN_ERRDEF(SVN_ERR_ENTRY_EXISTS,
351  SVN_ERR_ENTRY_CATEGORY_START + 2,
352  "Entry already exists")
353 
355  SVN_ERR_ENTRY_CATEGORY_START + 3,
356  "Entry has no revision")
357 
358  SVN_ERRDEF(SVN_ERR_ENTRY_MISSING_URL,
359  SVN_ERR_ENTRY_CATEGORY_START + 4,
360  "Entry has no URL")
361 
363  SVN_ERR_ENTRY_CATEGORY_START + 5,
364  "Entry has an invalid attribute")
365 
366  SVN_ERRDEF(SVN_ERR_ENTRY_FORBIDDEN,
367  SVN_ERR_ENTRY_CATEGORY_START + 6,
368  "Can't create an entry for a forbidden name")
369 
370  /* wc errors */
371 
372  SVN_ERRDEF(SVN_ERR_WC_OBSTRUCTED_UPDATE,
373  SVN_ERR_WC_CATEGORY_START + 0,
374  "Obstructed update")
375 
376  /** @deprecated Unused, slated for removal in the next major release. */
377  SVN_ERRDEF(SVN_ERR_WC_UNWIND_MISMATCH,
378  SVN_ERR_WC_CATEGORY_START + 1,
379  "Mismatch popping the WC unwind stack")
380 
381  /** @deprecated Unused, slated for removal in the next major release. */
382  SVN_ERRDEF(SVN_ERR_WC_UNWIND_EMPTY,
383  SVN_ERR_WC_CATEGORY_START + 2,
384  "Attempt to pop empty WC unwind stack")
385 
386  /** @deprecated Unused, slated for removal in the next major release. */
387  SVN_ERRDEF(SVN_ERR_WC_UNWIND_NOT_EMPTY,
388  SVN_ERR_WC_CATEGORY_START + 3,
389  "Attempt to unlock with non-empty unwind stack")
390 
391  SVN_ERRDEF(SVN_ERR_WC_LOCKED,
392  SVN_ERR_WC_CATEGORY_START + 4,
393  "Attempted to lock an already-locked dir")
394 
395  SVN_ERRDEF(SVN_ERR_WC_NOT_LOCKED,
396  SVN_ERR_WC_CATEGORY_START + 5,
397  "Working copy not locked; this is probably a bug, please report")
398 
399  /** @deprecated Unused, slated for removal in the next major release. */
400  SVN_ERRDEF(SVN_ERR_WC_INVALID_LOCK,
401  SVN_ERR_WC_CATEGORY_START + 6,
402  "Invalid lock")
403 
404  /** @since New in 1.7. Previously this error number was used by
405  * #SVN_ERR_WC_NOT_DIRECTORY, which is now an alias for this error. */
406  SVN_ERRDEF(SVN_ERR_WC_NOT_WORKING_COPY,
407  SVN_ERR_WC_CATEGORY_START + 7,
408  "Path is not a working copy directory")
409 
410  /** @deprecated Provided for backward compatibility with the 1.6 API.
411  * Use #SVN_ERR_WC_NOT_WORKING_COPY. */
412  SVN_ERRDEF(SVN_ERR_WC_NOT_DIRECTORY,
413  SVN_ERR_WC_NOT_WORKING_COPY,
414  "Path is not a working copy directory")
415 
416  SVN_ERRDEF(SVN_ERR_WC_NOT_FILE,
417  SVN_ERR_WC_CATEGORY_START + 8,
418  "Path is not a working copy file")
419 
420  SVN_ERRDEF(SVN_ERR_WC_BAD_ADM_LOG,
421  SVN_ERR_WC_CATEGORY_START + 9,
422  "Problem running log")
423 
424  SVN_ERRDEF(SVN_ERR_WC_PATH_NOT_FOUND,
425  SVN_ERR_WC_CATEGORY_START + 10,
426  "Can't find a working copy path")
427 
428  SVN_ERRDEF(SVN_ERR_WC_NOT_UP_TO_DATE,
429  SVN_ERR_WC_CATEGORY_START + 11,
430  "Working copy is not up-to-date")
431 
432  SVN_ERRDEF(SVN_ERR_WC_LEFT_LOCAL_MOD,
433  SVN_ERR_WC_CATEGORY_START + 12,
434  "Left locally modified or unversioned files")
435 
436  SVN_ERRDEF(SVN_ERR_WC_SCHEDULE_CONFLICT,
437  SVN_ERR_WC_CATEGORY_START + 13,
438  "Unmergeable scheduling requested on an entry")
439 
440  SVN_ERRDEF(SVN_ERR_WC_PATH_FOUND,
441  SVN_ERR_WC_CATEGORY_START + 14,
442  "Found a working copy path")
443 
444  SVN_ERRDEF(SVN_ERR_WC_FOUND_CONFLICT,
445  SVN_ERR_WC_CATEGORY_START + 15,
446  "A conflict in the working copy obstructs the current operation")
447 
448  SVN_ERRDEF(SVN_ERR_WC_CORRUPT,
449  SVN_ERR_WC_CATEGORY_START + 16,
450  "Working copy is corrupt")
451 
452  SVN_ERRDEF(SVN_ERR_WC_CORRUPT_TEXT_BASE,
453  SVN_ERR_WC_CATEGORY_START + 17,
454  "Working copy text base is corrupt")
455 
456  SVN_ERRDEF(SVN_ERR_WC_NODE_KIND_CHANGE,
457  SVN_ERR_WC_CATEGORY_START + 18,
458  "Cannot change node kind")
459 
460  SVN_ERRDEF(SVN_ERR_WC_INVALID_OP_ON_CWD,
461  SVN_ERR_WC_CATEGORY_START + 19,
462  "Invalid operation on the current working directory")
463 
464  SVN_ERRDEF(SVN_ERR_WC_BAD_ADM_LOG_START,
465  SVN_ERR_WC_CATEGORY_START + 20,
466  "Problem on first log entry in a working copy")
467 
469  SVN_ERR_WC_CATEGORY_START + 21,
470  "Unsupported working copy format")
471 
472  SVN_ERRDEF(SVN_ERR_WC_BAD_PATH,
473  SVN_ERR_WC_CATEGORY_START + 22,
474  "Path syntax not supported in this context")
475 
476  /** @since New in 1.2. */
477  SVN_ERRDEF(SVN_ERR_WC_INVALID_SCHEDULE,
478  SVN_ERR_WC_CATEGORY_START + 23,
479  "Invalid schedule")
480 
481  /** @since New in 1.3. */
483  SVN_ERR_WC_CATEGORY_START + 24,
484  "Invalid relocation")
485 
486  /** @since New in 1.3. */
487  SVN_ERRDEF(SVN_ERR_WC_INVALID_SWITCH,
488  SVN_ERR_WC_CATEGORY_START + 25,
489  "Invalid switch")
490 
491  /** @since New in 1.5. */
493  SVN_ERR_WC_CATEGORY_START + 26,
494  "Changelist doesn't match")
495 
496  /** @since New in 1.5. */
498  SVN_ERR_WC_CATEGORY_START + 27,
499  "Conflict resolution failed")
500 
502  SVN_ERR_WC_CATEGORY_START + 28,
503  "Failed to locate 'copyfrom' path in working copy")
504 
505  /** @since New in 1.5.
506  * @deprecated Provided for backward compatibility with the 1.6 API.
507  * This event is not an error, and is now reported
508  * via the standard notification mechanism instead. */
509  SVN_ERRDEF(SVN_ERR_WC_CHANGELIST_MOVE,
510  SVN_ERR_WC_CATEGORY_START + 29,
511  "Moving a path from one changelist to another")
512 
513  /** @since New in 1.6. */
515  SVN_ERR_WC_CATEGORY_START + 30,
516  "Cannot delete a file external")
517 
518  /** @since New in 1.6. */
520  SVN_ERR_WC_CATEGORY_START + 31,
521  "Cannot move a file external")
522 
523  /** @since New in 1.7. */
524  SVN_ERRDEF(SVN_ERR_WC_DB_ERROR,
525  SVN_ERR_WC_CATEGORY_START + 32,
526  "Something's amiss with the wc sqlite database")
527 
528  /** @since New in 1.7. */
529  SVN_ERRDEF(SVN_ERR_WC_MISSING,
530  SVN_ERR_WC_CATEGORY_START + 33,
531  "The working copy is missing")
532 
533  /** @since New in 1.7. */
534  SVN_ERRDEF(SVN_ERR_WC_NOT_SYMLINK,
535  SVN_ERR_WC_CATEGORY_START + 34,
536  "The specified node is not a symlink")
537 
538  /** @since New in 1.7. */
540  SVN_ERR_WC_CATEGORY_START + 35,
541  "The specified path has an unexpected status")
542 
543  /** @since New in 1.7. */
544  SVN_ERRDEF(SVN_ERR_WC_UPGRADE_REQUIRED,
545  SVN_ERR_WC_CATEGORY_START + 36,
546  "The working copy needs to be upgraded")
547 
548  /** @since New in 1.7. */
549  SVN_ERRDEF(SVN_ERR_WC_CLEANUP_REQUIRED,
550  SVN_ERR_WC_CATEGORY_START + 37,
551  "Previous operation has not finished; "
552  "run 'cleanup' if it was interrupted")
553 
554  /** @since New in 1.7. */
556  SVN_ERR_WC_CATEGORY_START + 38,
557  "The operation cannot be performed with the specified depth")
558 
559  /** @since New in 1.7. */
561  SVN_ERR_WC_CATEGORY_START + 39,
562  "Couldn't open a working copy file because access was denied")
563 
564  /** @since New in 1.8. */
565  SVN_ERRDEF(SVN_ERR_WC_MIXED_REVISIONS,
566  SVN_ERR_WC_CATEGORY_START + 40,
567  "Mixed-revision working copy was found but not expected")
568 
569  /** @since New in 1.8 */
571  SVN_ERR_WC_CATEGORY_START + 41,
572  "Duplicate targets in svn:externals property")
573 
574  /* fs errors */
575 
576  SVN_ERRDEF(SVN_ERR_FS_GENERAL,
577  SVN_ERR_FS_CATEGORY_START + 0,
578  "General filesystem error")
579 
580  SVN_ERRDEF(SVN_ERR_FS_CLEANUP,
581  SVN_ERR_FS_CATEGORY_START + 1,
582  "Error closing filesystem")
583 
584  SVN_ERRDEF(SVN_ERR_FS_ALREADY_OPEN,
585  SVN_ERR_FS_CATEGORY_START + 2,
586  "Filesystem is already open")
587 
588  SVN_ERRDEF(SVN_ERR_FS_NOT_OPEN,
589  SVN_ERR_FS_CATEGORY_START + 3,
590  "Filesystem is not open")
591 
592  SVN_ERRDEF(SVN_ERR_FS_CORRUPT,
593  SVN_ERR_FS_CATEGORY_START + 4,
594  "Filesystem is corrupt")
595 
596  SVN_ERRDEF(SVN_ERR_FS_PATH_SYNTAX,
597  SVN_ERR_FS_CATEGORY_START + 5,
598  "Invalid filesystem path syntax")
599 
600  SVN_ERRDEF(SVN_ERR_FS_NO_SUCH_REVISION,
601  SVN_ERR_FS_CATEGORY_START + 6,
602  "Invalid filesystem revision number")
603 
605  SVN_ERR_FS_CATEGORY_START + 7,
606  "Invalid filesystem transaction name")
607 
608  SVN_ERRDEF(SVN_ERR_FS_NO_SUCH_ENTRY,
609  SVN_ERR_FS_CATEGORY_START + 8,
610  "Filesystem directory has no such entry")
611 
613  SVN_ERR_FS_CATEGORY_START + 9,
614  "Filesystem has no such representation")
615 
616  SVN_ERRDEF(SVN_ERR_FS_NO_SUCH_STRING,
617  SVN_ERR_FS_CATEGORY_START + 10,
618  "Filesystem has no such string")
619 
620  SVN_ERRDEF(SVN_ERR_FS_NO_SUCH_COPY,
621  SVN_ERR_FS_CATEGORY_START + 11,
622  "Filesystem has no such copy")
623 
625  SVN_ERR_FS_CATEGORY_START + 12,
626  "The specified transaction is not mutable")
627 
628  SVN_ERRDEF(SVN_ERR_FS_NOT_FOUND,
629  SVN_ERR_FS_CATEGORY_START + 13,
630  "Filesystem has no item")
631 
632  SVN_ERRDEF(SVN_ERR_FS_ID_NOT_FOUND,
633  SVN_ERR_FS_CATEGORY_START + 14,
634  "Filesystem has no such node-rev-id")
635 
636  SVN_ERRDEF(SVN_ERR_FS_NOT_ID,
637  SVN_ERR_FS_CATEGORY_START + 15,
638  "String does not represent a node or node-rev-id")
639 
640  SVN_ERRDEF(SVN_ERR_FS_NOT_DIRECTORY,
641  SVN_ERR_FS_CATEGORY_START + 16,
642  "Name does not refer to a filesystem directory")
643 
644  SVN_ERRDEF(SVN_ERR_FS_NOT_FILE,
645  SVN_ERR_FS_CATEGORY_START + 17,
646  "Name does not refer to a filesystem file")
647 
649  SVN_ERR_FS_CATEGORY_START + 18,
650  "Name is not a single path component")
651 
652  SVN_ERRDEF(SVN_ERR_FS_NOT_MUTABLE,
653  SVN_ERR_FS_CATEGORY_START + 19,
654  "Attempt to change immutable filesystem node")
655 
656  SVN_ERRDEF(SVN_ERR_FS_ALREADY_EXISTS,
657  SVN_ERR_FS_CATEGORY_START + 20,
658  "Item already exists in filesystem")
659 
660  SVN_ERRDEF(SVN_ERR_FS_ROOT_DIR,
661  SVN_ERR_FS_CATEGORY_START + 21,
662  "Attempt to remove or recreate fs root dir")
663 
664  SVN_ERRDEF(SVN_ERR_FS_NOT_TXN_ROOT,
665  SVN_ERR_FS_CATEGORY_START + 22,
666  "Object is not a transaction root")
667 
668  SVN_ERRDEF(SVN_ERR_FS_NOT_REVISION_ROOT,
669  SVN_ERR_FS_CATEGORY_START + 23,
670  "Object is not a revision root")
671 
672  SVN_ERRDEF(SVN_ERR_FS_CONFLICT,
673  SVN_ERR_FS_CATEGORY_START + 24,
674  "Merge conflict during commit")
675 
676  SVN_ERRDEF(SVN_ERR_FS_REP_CHANGED,
677  SVN_ERR_FS_CATEGORY_START + 25,
678  "A representation vanished or changed between reads")
679 
680  SVN_ERRDEF(SVN_ERR_FS_REP_NOT_MUTABLE,
681  SVN_ERR_FS_CATEGORY_START + 26,
682  "Tried to change an immutable representation")
683 
684  SVN_ERRDEF(SVN_ERR_FS_MALFORMED_SKEL,
685  SVN_ERR_FS_CATEGORY_START + 27,
686  "Malformed skeleton data")
687 
688  SVN_ERRDEF(SVN_ERR_FS_TXN_OUT_OF_DATE,
689  SVN_ERR_FS_CATEGORY_START + 28,
690  "Transaction is out of date")
691 
692  SVN_ERRDEF(SVN_ERR_FS_BERKELEY_DB,
693  SVN_ERR_FS_CATEGORY_START + 29,
694  "Berkeley DB error")
695 
697  SVN_ERR_FS_CATEGORY_START + 30,
698  "Berkeley DB deadlock error")
699 
700  SVN_ERRDEF(SVN_ERR_FS_TRANSACTION_DEAD,
701  SVN_ERR_FS_CATEGORY_START + 31,
702  "Transaction is dead")
703 
705  SVN_ERR_FS_CATEGORY_START + 32,
706  "Transaction is not dead")
707 
708  /** @since New in 1.1. */
709  SVN_ERRDEF(SVN_ERR_FS_UNKNOWN_FS_TYPE,
710  SVN_ERR_FS_CATEGORY_START + 33,
711  "Unknown FS type")
712 
713  /** @since New in 1.2. */
714  SVN_ERRDEF(SVN_ERR_FS_NO_USER,
715  SVN_ERR_FS_CATEGORY_START + 34,
716  "No user associated with filesystem")
717 
718  /** @since New in 1.2. */
720  SVN_ERR_FS_CATEGORY_START + 35,
721  "Path is already locked")
722 
723  /** @since New in 1.2. */
724  SVN_ERRDEF(SVN_ERR_FS_PATH_NOT_LOCKED,
725  SVN_ERR_FS_CATEGORY_START + 36,
726  "Path is not locked")
727 
728  /** @since New in 1.2. */
729  SVN_ERRDEF(SVN_ERR_FS_BAD_LOCK_TOKEN,
730  SVN_ERR_FS_CATEGORY_START + 37,
731  "Lock token is incorrect")
732 
733  /** @since New in 1.2. */
734  SVN_ERRDEF(SVN_ERR_FS_NO_LOCK_TOKEN,
735  SVN_ERR_FS_CATEGORY_START + 38,
736  "No lock token provided")
737 
738  /** @since New in 1.2. */
740  SVN_ERR_FS_CATEGORY_START + 39,
741  "Username does not match lock owner")
742 
743  /** @since New in 1.2. */
744  SVN_ERRDEF(SVN_ERR_FS_NO_SUCH_LOCK,
745  SVN_ERR_FS_CATEGORY_START + 40,
746  "Filesystem has no such lock")
747 
748  /** @since New in 1.2. */
749  SVN_ERRDEF(SVN_ERR_FS_LOCK_EXPIRED,
750  SVN_ERR_FS_CATEGORY_START + 41,
751  "Lock has expired")
752 
753  /** @since New in 1.2. */
754  SVN_ERRDEF(SVN_ERR_FS_OUT_OF_DATE,
755  SVN_ERR_FS_CATEGORY_START + 42,
756  "Item is out of date")
757 
758  /**@since New in 1.2.
759  *
760  * This is analogous to SVN_ERR_REPOS_UNSUPPORTED_VERSION. To avoid
761  * confusion with "versions" (i.e., releases) of Subversion, we've
762  * started calling this the "format" number instead. The old
763  * SVN_ERR_REPOS_UNSUPPORTED_VERSION error predates this and so
764  * retains its name.
765  */
767  SVN_ERR_FS_CATEGORY_START + 43,
768  "Unsupported FS format")
769 
770  /** @since New in 1.5. */
771  SVN_ERRDEF(SVN_ERR_FS_REP_BEING_WRITTEN,
772  SVN_ERR_FS_CATEGORY_START + 44,
773  "Representation is being written")
774 
775  /** @since New in 1.5. */
776  SVN_ERRDEF(SVN_ERR_FS_TXN_NAME_TOO_LONG,
777  SVN_ERR_FS_CATEGORY_START + 45,
778  "The generated transaction name is too long")
779 
780  /** @since New in 1.5. */
782  SVN_ERR_FS_CATEGORY_START + 46,
783  "Filesystem has no such node origin record")
784 
785  /** @since New in 1.5. */
787  SVN_ERR_FS_CATEGORY_START + 47,
788  "Filesystem upgrade is not supported")
789 
790  /** @since New in 1.6. */
792  SVN_ERR_FS_CATEGORY_START + 48,
793  "Filesystem has no such checksum-representation index record")
794 
795  /** @since New in 1.7. */
797  SVN_ERR_FS_CATEGORY_START + 49,
798  "Property value in filesystem differs from the provided "
799  "base value")
800 
801  /** @since New in 1.8. */
803  SVN_ERR_FS_CATEGORY_START + 50,
804  "The filesystem editor completion process was not followed")
805 
806  /** @since New in 1.8. */
808  SVN_ERR_FS_CATEGORY_START + 51,
809  "A packed revprop could not be read")
810 
811  /** @since New in 1.8. */
813  SVN_ERR_FS_CATEGORY_START + 52,
814  "Could not initialize the revprop caching infrastructure.")
815 
816  /** @since New in 1.9. */
817  SVN_ERRDEF(SVN_ERR_FS_MALFORMED_TXN_ID,
818  SVN_ERR_FS_CATEGORY_START + 53,
819  "Malformed transaction ID string.")
820 
821  /** @since New in 1.9. */
822  SVN_ERRDEF(SVN_ERR_FS_INDEX_CORRUPTION,
823  SVN_ERR_FS_CATEGORY_START + 54,
824  "Corrupt index file.")
825 
826  /** @since New in 1.9. */
827  SVN_ERRDEF(SVN_ERR_FS_INDEX_REVISION,
828  SVN_ERR_FS_CATEGORY_START + 55,
829  "Revision not covered by index.")
830 
831  /** @since New in 1.9. */
832  SVN_ERRDEF(SVN_ERR_FS_INDEX_OVERFLOW,
833  SVN_ERR_FS_CATEGORY_START + 56,
834  "Item index too large for this revision.")
835 
836  /** @since New in 1.9. */
837  SVN_ERRDEF(SVN_ERR_FS_CONTAINER_INDEX,
838  SVN_ERR_FS_CATEGORY_START + 57,
839  "Container index out of range.")
840 
841  /** @since New in 1.9. */
843  SVN_ERR_FS_CATEGORY_START + 58,
844  "Index files are inconsistent.")
845 
846  /** @since New in 1.9. */
848  SVN_ERR_FS_CATEGORY_START + 59,
849  "Lock operation failed")
850 
851  /** @since New in 1.9. */
852  SVN_ERRDEF(SVN_ERR_FS_UNSUPPORTED_TYPE,
853  SVN_ERR_FS_CATEGORY_START + 60,
854  "Unsupported FS type")
855 
856  /** @since New in 1.9. */
857  SVN_ERRDEF(SVN_ERR_FS_CONTAINER_SIZE,
858  SVN_ERR_FS_CATEGORY_START + 61,
859  "Container capacity exceeded.")
860 
861  /** @since New in 1.9. */
863  SVN_ERR_FS_CATEGORY_START + 62,
864  "Malformed node revision ID string.")
865 
866  /** @since New in 1.9. */
868  SVN_ERR_FS_CATEGORY_START + 63,
869  "Invalid generation number data.")
870 
871  /* repos errors */
872 
873  SVN_ERRDEF(SVN_ERR_REPOS_LOCKED,
874  SVN_ERR_REPOS_CATEGORY_START + 0,
875  "The repository is locked, perhaps for db recovery")
876 
877  SVN_ERRDEF(SVN_ERR_REPOS_HOOK_FAILURE,
878  SVN_ERR_REPOS_CATEGORY_START + 1,
879  "A repository hook failed")
880 
881  SVN_ERRDEF(SVN_ERR_REPOS_BAD_ARGS,
882  SVN_ERR_REPOS_CATEGORY_START + 2,
883  "Incorrect arguments supplied")
884 
886  SVN_ERR_REPOS_CATEGORY_START + 3,
887  "A report cannot be generated because no data was supplied")
888 
890  SVN_ERR_REPOS_CATEGORY_START + 4,
891  "Bogus revision report")
892 
893  /* This is analogous to SVN_ERR_FS_UNSUPPORTED_FORMAT. To avoid
894  * confusion with "versions" (i.e., releases) of Subversion, we
895  * started using the word "format" instead of "version". However,
896  * this error code's name predates that decision.
897  */
899  SVN_ERR_REPOS_CATEGORY_START + 5,
900  "Unsupported repository version")
901 
903  SVN_ERR_REPOS_CATEGORY_START + 6,
904  "Disabled repository feature")
905 
907  SVN_ERR_REPOS_CATEGORY_START + 7,
908  "Error running post-commit hook")
909 
910  /** @since New in 1.2. */
912  SVN_ERR_REPOS_CATEGORY_START + 8,
913  "Error running post-lock hook")
914 
915  /** @since New in 1.2. */
917  SVN_ERR_REPOS_CATEGORY_START + 9,
918  "Error running post-unlock hook")
919 
920  /** @since New in 1.5. */
922  SVN_ERR_REPOS_CATEGORY_START + 10,
923  "Repository upgrade is not supported")
924 
925  /* generic RA errors */
926 
927  SVN_ERRDEF(SVN_ERR_RA_ILLEGAL_URL,
928  SVN_ERR_RA_CATEGORY_START + 0,
929  "Bad URL passed to RA layer")
930 
931  SVN_ERRDEF(SVN_ERR_RA_NOT_AUTHORIZED,
932  SVN_ERR_RA_CATEGORY_START + 1,
933  "Authorization failed")
934 
935  SVN_ERRDEF(SVN_ERR_RA_UNKNOWN_AUTH,
936  SVN_ERR_RA_CATEGORY_START + 2,
937  "Unknown authorization method")
938 
939  SVN_ERRDEF(SVN_ERR_RA_NOT_IMPLEMENTED,
940  SVN_ERR_RA_CATEGORY_START + 3,
941  "Repository access method not implemented")
942 
943  SVN_ERRDEF(SVN_ERR_RA_OUT_OF_DATE,
944  SVN_ERR_RA_CATEGORY_START + 4,
945  "Item is out of date")
946 
947  SVN_ERRDEF(SVN_ERR_RA_NO_REPOS_UUID,
948  SVN_ERR_RA_CATEGORY_START + 5,
949  "Repository has no UUID")
950 
952  SVN_ERR_RA_CATEGORY_START + 6,
953  "Unsupported RA plugin ABI version")
954 
955  /** @since New in 1.2. */
956  SVN_ERRDEF(SVN_ERR_RA_NOT_LOCKED,
957  SVN_ERR_RA_CATEGORY_START + 7,
958  "Path is not locked")
959 
960  /** @since New in 1.5. */
962  SVN_ERR_RA_CATEGORY_START + 8,
963  "Server can only replay from the root of a repository")
964 
965  /** @since New in 1.5. */
966  SVN_ERRDEF(SVN_ERR_RA_UUID_MISMATCH,
967  SVN_ERR_RA_CATEGORY_START + 9,
968  "Repository UUID does not match expected UUID")
969 
970  /** @since New in 1.6. */
972  SVN_ERR_RA_CATEGORY_START + 10,
973  "Repository root URL does not match expected root URL")
974 
975  /** @since New in 1.7. */
977  SVN_ERR_RA_CATEGORY_START + 11,
978  "Session URL does not match expected session URL")
979 
980  /** @since New in 1.8. */
982  SVN_ERR_RA_CATEGORY_START + 12,
983  "Can't create tunnel")
984 
985  /** @since New in 1.9. */
987  SVN_ERR_RA_CATEGORY_START + 13,
988  "Can't create session")
989 
990  /* ra_dav errors */
991 
992  SVN_ERRDEF(SVN_ERR_RA_DAV_SOCK_INIT,
993  SVN_ERR_RA_DAV_CATEGORY_START + 0,
994  "RA layer failed to init socket layer")
995 
997  SVN_ERR_RA_DAV_CATEGORY_START + 1,
998  "RA layer failed to create HTTP request")
999 
1000  SVN_ERRDEF(SVN_ERR_RA_DAV_REQUEST_FAILED,
1001  SVN_ERR_RA_DAV_CATEGORY_START + 2,
1002  "RA layer request failed")
1003 
1005  SVN_ERR_RA_DAV_CATEGORY_START + 3,
1006  "RA layer didn't receive requested OPTIONS info")
1007 
1008  SVN_ERRDEF(SVN_ERR_RA_DAV_PROPS_NOT_FOUND,
1009  SVN_ERR_RA_DAV_CATEGORY_START + 4,
1010  "RA layer failed to fetch properties")
1011 
1012  SVN_ERRDEF(SVN_ERR_RA_DAV_ALREADY_EXISTS,
1013  SVN_ERR_RA_DAV_CATEGORY_START + 5,
1014  "RA layer file already exists")
1015 
1016  /** @deprecated To improve consistency between ra layers, this error code
1017  is replaced by SVN_ERR_BAD_CONFIG_VALUE.
1018  Slated for removal in the next major release. */
1020  SVN_ERR_RA_DAV_CATEGORY_START + 6,
1021  "Invalid configuration value")
1022 
1023  /** @deprecated To improve consistency between ra layers, this error code
1024  is replaced in ra_serf by SVN_ERR_FS_NOT_FOUND.
1025  Slated for removal in the next major release. */
1026  SVN_ERRDEF(SVN_ERR_RA_DAV_PATH_NOT_FOUND,
1027  SVN_ERR_RA_DAV_CATEGORY_START + 7,
1028  "HTTP Path Not Found")
1029 
1031  SVN_ERR_RA_DAV_CATEGORY_START + 8,
1032  "Failed to execute WebDAV PROPPATCH")
1033 
1034  /** @since New in 1.2. */
1035  SVN_ERRDEF(SVN_ERR_RA_DAV_MALFORMED_DATA,
1036  SVN_ERR_RA_DAV_CATEGORY_START + 9,
1037  "Malformed network data")
1038 
1039  /** @since New in 1.3 */
1041  SVN_ERR_RA_DAV_CATEGORY_START + 10,
1042  "Unable to extract data from response header")
1043 
1044  /** @since New in 1.5 */
1045  SVN_ERRDEF(SVN_ERR_RA_DAV_RELOCATED,
1046  SVN_ERR_RA_DAV_CATEGORY_START + 11,
1047  "Repository has been moved")
1048 
1049  /** @since New in 1.7 */
1050  SVN_ERRDEF(SVN_ERR_RA_DAV_CONN_TIMEOUT,
1051  SVN_ERR_RA_DAV_CATEGORY_START + 12,
1052  "Connection timed out")
1053 
1054  /** @since New in 1.6 */
1055  SVN_ERRDEF(SVN_ERR_RA_DAV_FORBIDDEN,
1056  SVN_ERR_RA_DAV_CATEGORY_START + 13,
1057  "URL access forbidden for unknown reason")
1058 
1059  /** @since New in 1.9 */
1061  SVN_ERR_RA_DAV_CATEGORY_START + 14,
1062  "The server state conflicts with the requested preconditions")
1063 
1064  /** @since New in 1.9 */
1066  SVN_ERR_RA_DAV_CATEGORY_START + 15,
1067  "The URL doesn't allow the requested method")
1068 
1069  /* ra_local errors */
1070 
1072  SVN_ERR_RA_LOCAL_CATEGORY_START + 0,
1073  "Couldn't find a repository")
1074 
1076  SVN_ERR_RA_LOCAL_CATEGORY_START + 1,
1077  "Couldn't open a repository")
1078 
1079  /* svndiff errors */
1080 
1081  SVN_ERRDEF(SVN_ERR_SVNDIFF_INVALID_HEADER,
1082  SVN_ERR_SVNDIFF_CATEGORY_START + 0,
1083  "Svndiff data has invalid header")
1084 
1085  SVN_ERRDEF(SVN_ERR_SVNDIFF_CORRUPT_WINDOW,
1086  SVN_ERR_SVNDIFF_CATEGORY_START + 1,
1087  "Svndiff data contains corrupt window")
1088 
1089  SVN_ERRDEF(SVN_ERR_SVNDIFF_BACKWARD_VIEW,
1090  SVN_ERR_SVNDIFF_CATEGORY_START + 2,
1091  "Svndiff data contains backward-sliding source view")
1092 
1093  SVN_ERRDEF(SVN_ERR_SVNDIFF_INVALID_OPS,
1094  SVN_ERR_SVNDIFF_CATEGORY_START + 3,
1095  "Svndiff data contains invalid instruction")
1096 
1097  SVN_ERRDEF(SVN_ERR_SVNDIFF_UNEXPECTED_END,
1098  SVN_ERR_SVNDIFF_CATEGORY_START + 4,
1099  "Svndiff data ends unexpectedly")
1100 
1102  SVN_ERR_SVNDIFF_CATEGORY_START + 5,
1103  "Svndiff compressed data is invalid")
1104 
1105  /* mod_dav_svn errors */
1106 
1108  SVN_ERR_APMOD_CATEGORY_START + 0,
1109  "Apache has no path to an SVN filesystem")
1110 
1111  SVN_ERRDEF(SVN_ERR_APMOD_MALFORMED_URI,
1112  SVN_ERR_APMOD_CATEGORY_START + 1,
1113  "Apache got a malformed URI")
1114 
1116  SVN_ERR_APMOD_CATEGORY_START + 2,
1117  "Activity not found")
1118 
1119  SVN_ERRDEF(SVN_ERR_APMOD_BAD_BASELINE,
1120  SVN_ERR_APMOD_CATEGORY_START + 3,
1121  "Baseline incorrect")
1122 
1124  SVN_ERR_APMOD_CATEGORY_START + 4,
1125  "Input/output error")
1126 
1127  /* libsvn_client errors */
1128 
1130  SVN_ERR_CLIENT_CATEGORY_START + 0,
1131  "A path under version control is needed for this operation")
1132 
1134  SVN_ERR_CLIENT_CATEGORY_START + 1,
1135  "Repository access is needed for this operation")
1136 
1137  SVN_ERRDEF(SVN_ERR_CLIENT_BAD_REVISION,
1138  SVN_ERR_CLIENT_CATEGORY_START + 2,
1139  "Bogus revision information given")
1140 
1142  SVN_ERR_CLIENT_CATEGORY_START + 3,
1143  "Attempting to commit to a URL more than once")
1144 
1145  SVN_ERRDEF(SVN_ERR_CLIENT_IS_BINARY_FILE,
1146  SVN_ERR_CLIENT_CATEGORY_START + 4,
1147  "Operation does not apply to binary file")
1148 
1149  /*### SVN_PROP_EXTERNALS needed to be replaced with "svn:externals"
1150  in order to get gettext translatable strings */
1152  SVN_ERR_CLIENT_CATEGORY_START + 5,
1153  "Format of an svn:externals property was invalid")
1154 
1155  SVN_ERRDEF(SVN_ERR_CLIENT_MODIFIED,
1156  SVN_ERR_CLIENT_CATEGORY_START + 6,
1157  "Attempting restricted operation for modified resource")
1158 
1159  SVN_ERRDEF(SVN_ERR_CLIENT_IS_DIRECTORY,
1160  SVN_ERR_CLIENT_CATEGORY_START + 7,
1161  "Operation does not apply to directory")
1162 
1163  SVN_ERRDEF(SVN_ERR_CLIENT_REVISION_RANGE,
1164  SVN_ERR_CLIENT_CATEGORY_START + 8,
1165  "Revision range is not allowed")
1166 
1168  SVN_ERR_CLIENT_CATEGORY_START + 9,
1169  "Inter-repository relocation not allowed")
1170 
1172  SVN_ERR_CLIENT_CATEGORY_START + 10,
1173  "Author name cannot contain a newline")
1174 
1175  SVN_ERRDEF(SVN_ERR_CLIENT_PROPERTY_NAME,
1176  SVN_ERR_CLIENT_CATEGORY_START + 11,
1177  "Bad property name")
1178 
1179  /** @since New in 1.1. */
1181  SVN_ERR_CLIENT_CATEGORY_START + 12,
1182  "Two versioned resources are unrelated")
1183 
1184  /** @since New in 1.2. */
1186  SVN_ERR_CLIENT_CATEGORY_START + 13,
1187  "Path has no lock token")
1188 
1189  /** @since New in 1.5. */
1191  SVN_ERR_CLIENT_CATEGORY_START + 14,
1192  "Operation does not support multiple sources")
1193 
1194  /** @since New in 1.5. */
1196  SVN_ERR_CLIENT_CATEGORY_START + 15,
1197  "No versioned parent directories")
1198 
1199  /** @since New in 1.5. */
1201  SVN_ERR_CLIENT_CATEGORY_START + 16,
1202  "Working copy and merge source not ready for reintegration")
1203 
1204  /** @since New in 1.6. */
1206  SVN_ERR_CLIENT_CATEGORY_START + 17,
1207  "A file external cannot overwrite an existing versioned item")
1208 
1209  /** @since New in 1.7. */
1211  SVN_ERR_CLIENT_CATEGORY_START + 18,
1212  "Invalid path component strip count specified")
1213 
1214  /** @since New in 1.7. */
1215  SVN_ERRDEF(SVN_ERR_CLIENT_CYCLE_DETECTED,
1216  SVN_ERR_CLIENT_CATEGORY_START + 19,
1217  "Detected a cycle while processing the operation")
1218 
1219  /** @since New in 1.7. */
1221  SVN_ERR_CLIENT_CATEGORY_START + 20,
1222  "Working copy and merge source not ready for reintegration")
1223 
1224  /** @since New in 1.7. */
1226  SVN_ERR_CLIENT_CATEGORY_START + 21,
1227  "Invalid mergeinfo detected in merge target")
1228 
1229  /** @since New in 1.7. */
1230  SVN_ERRDEF(SVN_ERR_CLIENT_NO_LOCK_TOKEN,
1231  SVN_ERR_CLIENT_CATEGORY_START + 22,
1232  "Can't perform this operation without a valid lock token")
1233 
1234  /** @since New in 1.7. */
1236  SVN_ERR_CLIENT_CATEGORY_START + 23,
1237  "The operation is forbidden by the server")
1238 
1239  /* misc errors */
1240 
1241  SVN_ERRDEF(SVN_ERR_BASE,
1242  SVN_ERR_MISC_CATEGORY_START + 0,
1243  "A problem occurred; see other errors for details")
1244 
1245  SVN_ERRDEF(SVN_ERR_PLUGIN_LOAD_FAILURE,
1246  SVN_ERR_MISC_CATEGORY_START + 1,
1247  "Failure loading plugin")
1248 
1249  SVN_ERRDEF(SVN_ERR_MALFORMED_FILE,
1250  SVN_ERR_MISC_CATEGORY_START + 2,
1251  "Malformed file")
1252 
1253  SVN_ERRDEF(SVN_ERR_INCOMPLETE_DATA,
1254  SVN_ERR_MISC_CATEGORY_START + 3,
1255  "Incomplete data")
1256 
1257  SVN_ERRDEF(SVN_ERR_INCORRECT_PARAMS,
1258  SVN_ERR_MISC_CATEGORY_START + 4,
1259  "Incorrect parameters given")
1260 
1261  SVN_ERRDEF(SVN_ERR_UNVERSIONED_RESOURCE,
1262  SVN_ERR_MISC_CATEGORY_START + 5,
1263  "Tried a versioning operation on an unversioned resource")
1264 
1265  SVN_ERRDEF(SVN_ERR_TEST_FAILED,
1266  SVN_ERR_MISC_CATEGORY_START + 6,
1267  "Test failed")
1268 
1269  SVN_ERRDEF(SVN_ERR_UNSUPPORTED_FEATURE,
1270  SVN_ERR_MISC_CATEGORY_START + 7,
1271  "Trying to use an unsupported feature")
1272 
1273  SVN_ERRDEF(SVN_ERR_BAD_PROP_KIND,
1274  SVN_ERR_MISC_CATEGORY_START + 8,
1275  "Unexpected or unknown property kind")
1276 
1277  SVN_ERRDEF(SVN_ERR_ILLEGAL_TARGET,
1278  SVN_ERR_MISC_CATEGORY_START + 9,
1279  "Illegal target for the requested operation")
1280 
1282  SVN_ERR_MISC_CATEGORY_START + 10,
1283  "MD5 checksum is missing")
1284 
1285  SVN_ERRDEF(SVN_ERR_DIR_NOT_EMPTY,
1286  SVN_ERR_MISC_CATEGORY_START + 11,
1287  "Directory needs to be empty but is not")
1288 
1289  SVN_ERRDEF(SVN_ERR_EXTERNAL_PROGRAM,
1290  SVN_ERR_MISC_CATEGORY_START + 12,
1291  "Error calling external program")
1292 
1293  SVN_ERRDEF(SVN_ERR_SWIG_PY_EXCEPTION_SET,
1294  SVN_ERR_MISC_CATEGORY_START + 13,
1295  "Python exception has been set with the error")
1296 
1297  SVN_ERRDEF(SVN_ERR_CHECKSUM_MISMATCH,
1298  SVN_ERR_MISC_CATEGORY_START + 14,
1299  "A checksum mismatch occurred")
1300 
1301  SVN_ERRDEF(SVN_ERR_CANCELLED,
1302  SVN_ERR_MISC_CATEGORY_START + 15,
1303  "The operation was interrupted")
1304 
1305  SVN_ERRDEF(SVN_ERR_INVALID_DIFF_OPTION,
1306  SVN_ERR_MISC_CATEGORY_START + 16,
1307  "The specified diff option is not supported")
1308 
1309  SVN_ERRDEF(SVN_ERR_PROPERTY_NOT_FOUND,
1310  SVN_ERR_MISC_CATEGORY_START + 17,
1311  "Property not found")
1312 
1313  SVN_ERRDEF(SVN_ERR_NO_AUTH_FILE_PATH,
1314  SVN_ERR_MISC_CATEGORY_START + 18,
1315  "No auth file path available")
1316 
1317  /** @since New in 1.1. */
1318  SVN_ERRDEF(SVN_ERR_VERSION_MISMATCH,
1319  SVN_ERR_MISC_CATEGORY_START + 19,
1320  "Incompatible library version")
1321 
1322  /** @since New in 1.5. */
1323  SVN_ERRDEF(SVN_ERR_MERGEINFO_PARSE_ERROR,
1324  SVN_ERR_MISC_CATEGORY_START + 20,
1325  "Mergeinfo parse error")
1326 
1327  /** @since New in 1.5. */
1328  SVN_ERRDEF(SVN_ERR_CEASE_INVOCATION,
1329  SVN_ERR_MISC_CATEGORY_START + 21,
1330  "Cease invocation of this API")
1331 
1332  /** @since New in 1.5. */
1333  SVN_ERRDEF(SVN_ERR_REVNUM_PARSE_FAILURE,
1334  SVN_ERR_MISC_CATEGORY_START + 22,
1335  "Error parsing revision number")
1336 
1337  /** @since New in 1.5. */
1338  SVN_ERRDEF(SVN_ERR_ITER_BREAK,
1339  SVN_ERR_MISC_CATEGORY_START + 23,
1340  "Iteration terminated before completion")
1341 
1342  /** @since New in 1.5. */
1343  SVN_ERRDEF(SVN_ERR_UNKNOWN_CHANGELIST,
1344  SVN_ERR_MISC_CATEGORY_START + 24,
1345  "Unknown changelist")
1346 
1347  /** @since New in 1.5. */
1349  SVN_ERR_MISC_CATEGORY_START + 25,
1350  "Reserved directory name in command line arguments")
1351 
1352  /** @since New in 1.5. */
1353  SVN_ERRDEF(SVN_ERR_UNKNOWN_CAPABILITY,
1354  SVN_ERR_MISC_CATEGORY_START + 26,
1355  "Inquiry about unknown capability")
1356 
1357  /** @since New in 1.6. */
1358  SVN_ERRDEF(SVN_ERR_TEST_SKIPPED,
1359  SVN_ERR_MISC_CATEGORY_START + 27,
1360  "Test skipped")
1361 
1362  /** @since New in 1.6. */
1363  SVN_ERRDEF(SVN_ERR_NO_APR_MEMCACHE,
1364  SVN_ERR_MISC_CATEGORY_START + 28,
1365  "APR memcache library not available")
1366 
1367  /** @since New in 1.6. */
1368  SVN_ERRDEF(SVN_ERR_ATOMIC_INIT_FAILURE,
1369  SVN_ERR_MISC_CATEGORY_START + 29,
1370  "Couldn't perform atomic initialization")
1371 
1372  /** @since New in 1.6. */
1373  SVN_ERRDEF(SVN_ERR_SQLITE_ERROR,
1374  SVN_ERR_MISC_CATEGORY_START + 30,
1375  "SQLite error")
1376 
1377  /** @since New in 1.6. */
1378  SVN_ERRDEF(SVN_ERR_SQLITE_READONLY,
1379  SVN_ERR_MISC_CATEGORY_START + 31,
1380  "Attempted to write to readonly SQLite db")
1381 
1382  /** @since New in 1.6.
1383  * @deprecated the internal sqlite support code does not manage schemas
1384  * any longer. */
1386  SVN_ERR_MISC_CATEGORY_START + 32,
1387  "Unsupported schema found in SQLite db")
1388 
1389  /** @since New in 1.7. */
1390  SVN_ERRDEF(SVN_ERR_SQLITE_BUSY,
1391  SVN_ERR_MISC_CATEGORY_START + 33,
1392  "The SQLite db is busy")
1393 
1394  /** @since New in 1.7. */
1396  SVN_ERR_MISC_CATEGORY_START + 34,
1397  "SQLite busy at transaction rollback; "
1398  "resetting all busy SQLite statements to allow rollback")
1399 
1400  /** @since New in 1.7. */
1401  SVN_ERRDEF(SVN_ERR_SQLITE_CONSTRAINT,
1402  SVN_ERR_MISC_CATEGORY_START + 35,
1403  "Constraint error in SQLite db")
1404 
1405  /** @since New in 1.8. */
1407  SVN_ERR_MISC_CATEGORY_START + 36,
1408  "Too many memcached servers configured")
1409 
1410  /** @since New in 1.8. */
1412  SVN_ERR_MISC_CATEGORY_START + 37,
1413  "Failed to parse version number string")
1414 
1415  /** @since New in 1.8. */
1417  SVN_ERR_MISC_CATEGORY_START + 38,
1418  "Atomic data storage is corrupt")
1419 
1420  /** @since New in 1.8. */
1421  SVN_ERRDEF(SVN_ERR_UTF8PROC_ERROR,
1422  SVN_ERR_MISC_CATEGORY_START + 39,
1423  "utf8proc library error")
1424 
1425  /** @since New in 1.8. */
1426  SVN_ERRDEF(SVN_ERR_UTF8_GLOB,
1427  SVN_ERR_MISC_CATEGORY_START + 40,
1428  "Bad arguments to SQL operators GLOB or LIKE")
1429 
1430  /** @since New in 1.9. */
1431  SVN_ERRDEF(SVN_ERR_CORRUPT_PACKED_DATA,
1432  SVN_ERR_MISC_CATEGORY_START + 41,
1433  "Packed data stream is corrupt")
1434 
1435  /** @since New in 1.9. */
1436  SVN_ERRDEF(SVN_ERR_COMPOSED_ERROR,
1437  SVN_ERR_MISC_CATEGORY_START + 42,
1438  "Additional errors:")
1439 
1440  /** @since New in 1.9. */
1441  SVN_ERRDEF(SVN_ERR_INVALID_INPUT,
1442  SVN_ERR_MISC_CATEGORY_START + 43,
1443  "Parser error: invalid input")
1444 
1445  /* command-line client errors */
1446 
1447  SVN_ERRDEF(SVN_ERR_CL_ARG_PARSING_ERROR,
1448  SVN_ERR_CL_CATEGORY_START + 0,
1449  "Error parsing arguments")
1450 
1451  SVN_ERRDEF(SVN_ERR_CL_INSUFFICIENT_ARGS,
1452  SVN_ERR_CL_CATEGORY_START + 1,
1453  "Not enough arguments provided")
1454 
1456  SVN_ERR_CL_CATEGORY_START + 2,
1457  "Mutually exclusive arguments specified")
1458 
1459  SVN_ERRDEF(SVN_ERR_CL_ADM_DIR_RESERVED,
1460  SVN_ERR_CL_CATEGORY_START + 3,
1461  "Attempted command in administrative dir")
1462 
1464  SVN_ERR_CL_CATEGORY_START + 4,
1465  "The log message file is under version control")
1466 
1468  SVN_ERR_CL_CATEGORY_START + 5,
1469  "The log message is a pathname")
1470 
1471  SVN_ERRDEF(SVN_ERR_CL_COMMIT_IN_ADDED_DIR,
1472  SVN_ERR_CL_CATEGORY_START + 6,
1473  "Committing in directory scheduled for addition")
1474 
1475  SVN_ERRDEF(SVN_ERR_CL_NO_EXTERNAL_EDITOR,
1476  SVN_ERR_CL_CATEGORY_START + 7,
1477  "No external editor available")
1478 
1479  SVN_ERRDEF(SVN_ERR_CL_BAD_LOG_MESSAGE,
1480  SVN_ERR_CL_CATEGORY_START + 8,
1481  "Something is wrong with the log message's contents")
1482 
1484  SVN_ERR_CL_CATEGORY_START + 9,
1485  "A log message was given where none was necessary")
1486 
1488  SVN_ERR_CL_CATEGORY_START + 10,
1489  "No external merge tool available")
1490 
1492  SVN_ERR_CL_CATEGORY_START + 11,
1493  "Failed processing one or more externals definitions")
1494 
1495  /** @since New in 1.9. */
1496  SVN_ERRDEF(SVN_ERR_CL_REPOS_VERIFY_FAILED,
1497  SVN_ERR_CL_CATEGORY_START + 12,
1498  "Repository verification failed")
1499 
1500  /* ra_svn errors */
1501 
1502  SVN_ERRDEF(SVN_ERR_RA_SVN_CMD_ERR,
1503  SVN_ERR_RA_SVN_CATEGORY_START + 0,
1504  "Special code for wrapping server errors to report to client")
1505 
1506  SVN_ERRDEF(SVN_ERR_RA_SVN_UNKNOWN_CMD,
1507  SVN_ERR_RA_SVN_CATEGORY_START + 1,
1508  "Unknown svn protocol command")
1509 
1511  SVN_ERR_RA_SVN_CATEGORY_START + 2,
1512  "Network connection closed unexpectedly")
1513 
1514  SVN_ERRDEF(SVN_ERR_RA_SVN_IO_ERROR,
1515  SVN_ERR_RA_SVN_CATEGORY_START + 3,
1516  "Network read/write error")
1517 
1518  SVN_ERRDEF(SVN_ERR_RA_SVN_MALFORMED_DATA,
1519  SVN_ERR_RA_SVN_CATEGORY_START + 4,
1520  "Malformed network data")
1521 
1522  SVN_ERRDEF(SVN_ERR_RA_SVN_REPOS_NOT_FOUND,
1523  SVN_ERR_RA_SVN_CATEGORY_START + 5,
1524  "Couldn't find a repository")
1525 
1526  SVN_ERRDEF(SVN_ERR_RA_SVN_BAD_VERSION,
1527  SVN_ERR_RA_SVN_CATEGORY_START + 6,
1528  "Client/server version mismatch")
1529 
1530  /** @since New in 1.5. */
1531  SVN_ERRDEF(SVN_ERR_RA_SVN_NO_MECHANISMS,
1532  SVN_ERR_RA_SVN_CATEGORY_START + 7,
1533  "Cannot negotiate authentication mechanism")
1534 
1535  /** @since New in 1.7 */
1536  SVN_ERRDEF(SVN_ERR_RA_SVN_EDIT_ABORTED,
1537  SVN_ERR_RA_SVN_CATEGORY_START + 8,
1538  "Editor drive was aborted")
1539 
1540  /* libsvn_auth errors */
1541 
1542  /* this error can be used when an auth provider doesn't have
1543  the creds, but no other "real" error occurred. */
1545  SVN_ERR_AUTHN_CATEGORY_START + 0,
1546  "Credential data unavailable")
1547 
1548  SVN_ERRDEF(SVN_ERR_AUTHN_NO_PROVIDER,
1549  SVN_ERR_AUTHN_CATEGORY_START + 1,
1550  "No authentication provider available")
1551 
1553  SVN_ERR_AUTHN_CATEGORY_START + 2,
1554  "All authentication providers exhausted")
1555 
1556  SVN_ERRDEF(SVN_ERR_AUTHN_CREDS_NOT_SAVED,
1557  SVN_ERR_AUTHN_CATEGORY_START + 3,
1558  "Credentials not saved")
1559 
1560  /** @since New in 1.5. */
1561  SVN_ERRDEF(SVN_ERR_AUTHN_FAILED,
1562  SVN_ERR_AUTHN_CATEGORY_START + 4,
1563  "Authentication failed")
1564 
1565  /* authorization errors */
1566 
1567  SVN_ERRDEF(SVN_ERR_AUTHZ_ROOT_UNREADABLE,
1568  SVN_ERR_AUTHZ_CATEGORY_START + 0,
1569  "Read access denied for root of edit")
1570 
1571  /** @since New in 1.1. */
1572  SVN_ERRDEF(SVN_ERR_AUTHZ_UNREADABLE,
1573  SVN_ERR_AUTHZ_CATEGORY_START + 1,
1574  "Item is not readable")
1575 
1576  /** @since New in 1.1. */
1578  SVN_ERR_AUTHZ_CATEGORY_START + 2,
1579  "Item is partially readable")
1580 
1581  SVN_ERRDEF(SVN_ERR_AUTHZ_INVALID_CONFIG,
1582  SVN_ERR_AUTHZ_CATEGORY_START + 3,
1583  "Invalid authz configuration")
1584 
1585  /** @since New in 1.3 */
1586  SVN_ERRDEF(SVN_ERR_AUTHZ_UNWRITABLE,
1587  SVN_ERR_AUTHZ_CATEGORY_START + 4,
1588  "Item is not writable")
1589 
1590 
1591  /* libsvn_diff errors */
1592 
1594  SVN_ERR_DIFF_CATEGORY_START + 0,
1595  "Diff data source modified unexpectedly")
1596 
1597  /* libsvn_ra_serf errors */
1598  /** @since New in 1.5.
1599  @deprecated SSPI now handled by serf rather than libsvn_ra_serf. */
1601  SVN_ERR_RA_SERF_CATEGORY_START + 0,
1602  "Initialization of SSPI library failed")
1603  /** @since New in 1.5.
1604  @deprecated Certificate verification now handled by serf rather
1605  than libsvn_ra_serf. */
1607  SVN_ERR_RA_SERF_CATEGORY_START + 1,
1608  "Server SSL certificate untrusted")
1609  /** @since New in 1.7.
1610  @deprecated GSSAPI now handled by serf rather than libsvn_ra_serf. */
1612  SVN_ERR_RA_SERF_CATEGORY_START + 2,
1613  "Initialization of the GSSAPI context failed")
1614 
1615  /** @since New in 1.7. */
1616  SVN_ERRDEF(SVN_ERR_RA_SERF_WRAPPED_ERROR,
1617  SVN_ERR_RA_SERF_CATEGORY_START + 3,
1618  "While handling serf response:")
1619 
1620  /* malfunctions such as assertion failures */
1621 
1622  SVN_ERRDEF(SVN_ERR_ASSERTION_FAIL,
1623  SVN_ERR_MALFUNC_CATEGORY_START + 0,
1624  "Assertion failure")
1625 
1627  SVN_ERR_MALFUNC_CATEGORY_START + 1,
1628  "No non-tracing links found in the error chain")
1629 
1630  /* X509 parser errors.
1631  * Names of these error codes are based on tropicssl error codes.
1632  * @since New in 1.9 */
1633 
1634  SVN_ERRDEF(SVN_ERR_ASN1_OUT_OF_DATA,
1635  SVN_ERR_X509_CATEGORY_START + 0,
1636  "Unexpected end of ASN1 data")
1637 
1638  SVN_ERRDEF(SVN_ERR_ASN1_UNEXPECTED_TAG,
1639  SVN_ERR_X509_CATEGORY_START + 1,
1640  "Unexpected ASN1 tag")
1641 
1642  SVN_ERRDEF(SVN_ERR_ASN1_INVALID_LENGTH,
1643  SVN_ERR_X509_CATEGORY_START + 2,
1644  "Invalid ASN1 length")
1645 
1646  SVN_ERRDEF(SVN_ERR_ASN1_LENGTH_MISMATCH,
1647  SVN_ERR_X509_CATEGORY_START + 3,
1648  "ASN1 length mismatch")
1649 
1650  SVN_ERRDEF(SVN_ERR_ASN1_INVALID_DATA,
1651  SVN_ERR_X509_CATEGORY_START + 4,
1652  "Invalid ASN1 data")
1653 
1655  SVN_ERR_X509_CATEGORY_START + 5,
1656  "Unavailable X509 feature")
1657 
1658  SVN_ERRDEF(SVN_ERR_X509_CERT_INVALID_PEM,
1659  SVN_ERR_X509_CATEGORY_START + 6,
1660  "Invalid PEM certificate")
1661 
1663  SVN_ERR_X509_CATEGORY_START + 7,
1664  "Invalid certificate format")
1665 
1667  SVN_ERR_X509_CATEGORY_START + 8,
1668  "Invalid certificate version")
1669 
1671  SVN_ERR_X509_CATEGORY_START + 9,
1672  "Invalid certificate serial number")
1673 
1674  SVN_ERRDEF(SVN_ERR_X509_CERT_INVALID_ALG,
1675  SVN_ERR_X509_CATEGORY_START + 10,
1676  "Found invalid algorithm in certificate")
1677 
1678  SVN_ERRDEF(SVN_ERR_X509_CERT_INVALID_NAME,
1679  SVN_ERR_X509_CATEGORY_START + 11,
1680  "Found invalid name in certificate")
1681 
1682  SVN_ERRDEF(SVN_ERR_X509_CERT_INVALID_DATE,
1683  SVN_ERR_X509_CATEGORY_START + 12,
1684  "Found invalid date in certificate")
1685 
1687  SVN_ERR_X509_CATEGORY_START + 13,
1688  "Found invalid public key in certificate")
1689 
1691  SVN_ERR_X509_CATEGORY_START + 14,
1692  "Found invalid signature in certificate")
1693 
1695  SVN_ERR_X509_CATEGORY_START + 15,
1696  "Found invalid extensions in certificate")
1697 
1699  SVN_ERR_X509_CATEGORY_START + 16,
1700  "Unknown certificate version")
1701 
1703  SVN_ERR_X509_CATEGORY_START + 17,
1704  "Certificate uses unknown public key algorithm")
1705 
1706  SVN_ERRDEF(SVN_ERR_X509_CERT_SIG_MISMATCH,
1707  SVN_ERR_X509_CATEGORY_START + 18,
1708  "Certificate signature mismatch")
1709 
1711  SVN_ERR_X509_CATEGORY_START + 19,
1712  "Certficate verification failed")
1713 
1714 SVN_ERROR_END
1715 
1716 
1717 #undef SVN_ERROR_START
1718 #undef SVN_ERRDEF
1719 #undef SVN_ERROR_END
1720 
1721 #ifdef __cplusplus
1722 }
1723 #endif /* __cplusplus */
1724 
1725 #endif /* defined(SVN_ERROR_BUILD_ARRAY) || !defined(SVN_ERROR_ENUM_DEFINED) */
&quot;Diff data source modified unexpectedly&quot;
&quot;Can&#39;t find an entry&quot;
&quot;Unsupported FS format&quot;
&quot;Special code for wrapping server errors to report to client&quot;
&quot;Repository has been moved&quot;
&quot;Error parsing revision number&quot;
&quot;No auth file path available&quot;
&quot;Bogus server specification&quot;
&quot;Name is not a single path component&quot;
&quot;Error running post-unlock hook&quot;
&quot;Found invalid name in certificate&quot;
&quot;Cannot move a file external&quot;
&quot;The specified path has an unexpected status&quot;
&quot;Filesystem directory has no such entry&quot;
&quot;Mergeinfo parse error&quot;
&quot;Cannot negotiate authentication mechanism&quot;
&quot;Unsupported schema found in SQLite db&quot;
&quot;Operation does not apply to binary file&quot;
&quot;Lock token is incorrect&quot;
&quot;Svndiff data contains corrupt window&quot;
&quot;Attempt to unlock with non-empty unwind stack&quot;
&quot;Data cannot be safely XML-escaped&quot;
&quot;Name does not refer to a filesystem directory&quot;
&quot;Unsupported FS type&quot;
&quot;&lt;delta-pkg&gt; is missing ancestry&quot;
&quot;Lock has expired&quot;
&quot;Invalid certificate serial number&quot;
&quot;The generated transaction name is too long&quot;
&quot;Malformed network data&quot;
&quot;The specified transaction is not mutable&quot;
&quot;Path is not a working copy directory&quot;
&quot;Item is not writable&quot;
&quot;Found a working copy path&quot;
&quot;Working copy text base is corrupt&quot;
&quot;Working copy is corrupt&quot;
&quot;Credential data unavailable&quot;
&quot;Invalid filesystem transaction name&quot;
&quot;Couldn&#39;t find a repository&quot;
&quot;Bogus mime-type&quot;
&quot;Corrupt index file.&quot;
&quot;Transaction is dead&quot;
&quot;Authentication failed&quot;
&quot;Directory needs to be empty but is not&quot;
&quot;Repository upgrade is not supported&quot;
&quot;Additional errors:&quot;
&quot;Detected a cycle while processing the operation&quot;
&quot;RA layer failed to create HTTP request&quot;
&quot;Author name cannot contain a newline&quot;
&quot;Write error&quot;
&quot;Problem running log&quot;
&quot;Invalid ASN1 length&quot;
&quot;A packed revprop could not be read&quot;
&quot;Filesystem is corrupt&quot;
&quot;RA layer didn&#39;t receive requested OPTIONS info&quot;
&quot;Object is not a revision root&quot;
&quot;The repository is locked, perhaps for db recovery&quot;
&quot;No external editor available&quot;
&quot;Filesystem has no such node origin record&quot;
&quot;Path is not a working copy file&quot;
&quot;Framing error in pipe protocol&quot;
&quot;Disabled repository feature&quot;
&quot;Inquiry about unknown capability&quot;
&quot;Found invalid date in certificate&quot;
&quot;Berkeley DB deadlock error&quot;
&quot;Failed to locate &#39;copyfrom&#39; path in working copy&quot;
&quot;Representation is being written&quot;
&quot;Invalid authz configuration&quot;
&quot;Unavailable X509 feature&quot;
&quot;Item already exists in filesystem&quot;
&quot;The server state conflicts with the requested preconditions&quot;
&quot;Initialization of SSPI library failed&quot;
&quot;Input/output error&quot;
&quot;Packed data stream is corrupt&quot;
&quot;Invalid atomic&quot;
&quot;Attempt to pop empty WC unwind stack&quot;
&quot;A file external cannot overwrite an existing versioned item&quot;
&quot;The working copy needs to be upgraded&quot;
&quot;Attempt to remove or recreate fs root dir&quot;
&quot;Too many memcached servers configured&quot;
&quot;Unknown svn protocol command&quot;
&quot;Filesystem has no such checksum-representation index record&quot;
&quot;Unsupported repository version&quot;
&quot;RA layer file already exists&quot;
&quot;Malformed file&quot;
&quot;Invalid path component strip count specified&quot;
&quot;Failed to parse version number string&quot;
&quot;Invalid character in hex checksum&quot;
&quot;Could not initialize the revprop caching infrastructure.&quot;
&quot;Invalid compression method&quot;
&quot;MD5 checksum is missing&quot;
&quot;Authorization failed&quot;
&quot;HTTP Path Not Found&quot;
&quot;A report cannot be generated because no data was supplied&quot;
&quot;Cannot change node kind&quot;
&quot;Invalid mergeinfo detected in merge target&quot;
&quot;Network read/write error&quot;
&quot;Error parsing arguments&quot;
&quot;Not enough arguments provided&quot;
&quot;Name does not refer to a filesystem file&quot;
&quot;Unmergeable scheduling requested on an entry&quot;
&quot;Iteration terminated before completion&quot;
&quot;Attempted to lock an already-locked dir&quot;
&quot;Unknown string value of token&quot;
&quot;Couldn&#39;t perform atomic initialization&quot;
&quot;Inter-repository relocation not allowed&quot;
&quot;No non-tracing links found in the error chain&quot;
&quot;Container capacity exceeded.&quot;
&quot;Found invalid extensions in certificate&quot;
&quot;The specified diff option is not supported&quot;
&quot;Path syntax not supported in this context&quot;
&quot;Item is partially readable&quot;
&quot;Object is not a transaction root&quot;
&quot;Invalid changelist name&quot;
&quot;Python exception has been set with the error&quot;
&quot;Merge conflict during commit&quot;
&quot;A path under version control is needed for this operation&quot;
&quot;Reserved directory name in command line arguments&quot;
&quot;Wrong or unexpected property value&quot;
&quot;Revision range is not allowed&quot;
&quot;Invalid relocation&quot;
&quot;Line endings other than expected&quot;
&quot;No external merge tool available&quot;
&quot;Can&#39;t perform this operation without a valid lock token&quot;
&quot;RA layer failed to init socket layer&quot;
&quot;Malformed stream data&quot;
&quot;Unknown authorization method&quot;
&quot;Two versioned resources are unrelated&quot;
&quot;Index files are inconsistent.&quot;
&quot;Incorrect parameters given&quot;
&quot;Committing in directory scheduled for addition&quot;
&quot;Stream doesn&#39;t support seeking&quot;
&quot;Couldn&#39;t open a repository&quot;
&quot;No user associated with filesystem&quot;
&quot;utf8proc library error&quot;
&quot;Atomic data storage is corrupt&quot;
&quot;Format of an svn:externals property was invalid&quot;
&quot;The URL doesn&#39;t allow the requested method&quot;
&quot;Working copy and merge source not ready for reintegration&quot;
&quot;Tried to change an immutable representation&quot;
&quot;The specified node is not a symlink&quot;
&quot;Malformed network data&quot;
&quot;Inconsistent line ending style&quot;
&quot;Invalid lock&quot;
&quot;Invalid configuration value&quot;
&quot;Failure loading plugin&quot;
&quot;Failed processing one or more externals definitions&quot;
&quot;Filesystem has no such copy&quot;
&quot;A problem occurred; see other errors for details&quot;
&quot;Write error in pipe&quot;
&quot;Filesystem upgrade is not supported&quot;
&quot;Network connection closed unexpectedly&quot;
&quot;Malformed transaction ID string.&quot;
&quot;Obstructed update&quot;
&quot;APR memcache library not available&quot;
&quot;Credentials not saved&quot;
&quot;A representation vanished or changed between reads&quot;
&quot;The filesystem editor completion process was not followed&quot;
&quot;Repository verification failed&quot;
&quot;Invalid schedule&quot;
&quot;All authentication providers exhausted&quot;
&quot;Mutually exclusive arguments specified&quot;
&quot;Problem on first log entry in a working copy&quot;
&quot;Unknown certificate version&quot;
&quot;Tried a versioning operation on an unversioned resource&quot;
&quot;Unrecognized binary data encoding; can&#39;t decode&quot;
&quot;Version file format not correct&quot;
&quot;XML data was not well-formed&quot;
&quot;Bogus filename&quot;
&quot;Cease invocation of this API&quot;
&quot;While handling serf response:&quot;
&quot;Attempting restricted operation for modified resource&quot;
&quot;Can&#39;t find a working copy path&quot;
&quot;Unexpected or unknown property kind&quot;
&quot;Baseline incorrect&quot;
&quot;SQLite error&quot;
&quot;Filesystem is not open&quot;
&quot;The operation cannot be performed with the specified depth&quot;
&quot;Server SSL certificate untrusted&quot;
&quot;Session URL does not match expected session URL&quot;
&quot;Invalid filesystem revision number&quot;
&quot;Repository UUID does not match expected UUID&quot;
&quot;Incompatible library version&quot;
&quot;Unknown FS type&quot;
&quot;Unexpected EOF on stream&quot;
&quot;Apache has no path to an SVN filesystem&quot;
&quot;RA layer request failed&quot;
&quot;RA layer failed to fetch properties&quot;
&quot;Invalid generation number data.&quot;
&quot;The log message is a pathname&quot;
&quot;Svndiff data ends unexpectedly&quot;
&quot;Mismatch popping the WC unwind stack&quot;
&quot;Ran out of unique names&quot;
&quot;Working copy is not up-to-date&quot;
&quot;A repository hook failed&quot;
&quot;Repository has no UUID&quot;
&quot;Malformed skeleton data&quot;
&quot;String does not represent a node or node-rev-id&quot;
&quot;Failed to execute WebDAV PROPPATCH&quot;
&quot;Moving a path from one changelist to another&quot;
&quot;Error calling external program&quot;
&quot;Read error in pipe&quot;
&quot;Certficate verification failed&quot;
&quot;URL access forbidden for unknown reason&quot;
&quot;Invalid filesystem path syntax&quot;
&quot;Can&#39;t create session&quot;
&quot;Repository access is needed for this operation&quot;
&quot;Constraint error in SQLite db&quot;
&quot;Filesystem has no such representation&quot;
&quot;Attempted command in administrative dir&quot;
&quot;Error running post-lock hook&quot;
&quot;Unexpected end of ASN1 data&quot;
&quot;Container index out of range.&quot;
&quot;Svndiff data contains invalid instruction&quot;
&quot;Trying to use an unsupported feature&quot;
&quot;Unknown svn_node_kind&quot;
&quot;Bogus revision information given&quot;
&quot;Bogus UUID&quot;
&quot;Path has no lock token&quot;
&quot;Incorrect arguments supplied&quot;
&quot;Repository access method not implemented&quot;
&quot;Bogus date&quot;
&quot;Changelist doesn&#39;t match&quot;
&quot;Test failed&quot;
&quot;Bogus revision report&quot;
&quot;Server can only replay from the root of a repository&quot;
&quot;Property not found&quot;
&quot;Illegal target for the requested operation&quot;
&quot;No such XML tag attribute&quot;
&quot;Couldn&#39;t open a working copy file because access was denied&quot;
&quot;Unsupported working copy format&quot;
&quot;Malformed node revision ID string.&quot;
&quot;A conflict in the working copy obstructs the current operation&quot;
&quot;Operation does not apply to directory&quot;
&quot;A checksum mismatch occurred&quot;
&quot;Revision not covered by index.&quot;
&quot;Found invalid public key in certificate&quot;
&quot;Filesystem has no such string&quot;
&quot;Bad arguments to SQL operators GLOB or LIKE&quot;
&quot;The operation was interrupted&quot;
&quot;Unrecognized stream data&quot;
&quot;Unknown changelist&quot;
&quot;Unexpected node kind found&quot;
&quot;Assertion failure&quot;
&quot;Path is already locked&quot;
&quot;Property value in filesystem differs from the provided &quot; &quot;base value&quot;
&quot;Activity not found&quot;
&quot;Entry has no URL&quot;
&quot;Invalid PEM certificate&quot;
&quot;Invalid certificate format&quot;
&quot;Unrecognized line ending style&quot;
&quot;The operation is forbidden by the server&quot;
&quot;Found invalid algorithm in certificate&quot;
&quot;No lock token provided&quot;
&quot;Apache got a malformed URI&quot;
&quot;Working copy not locked; this is probably a bug, please report&quot;
&quot;Item is out of date&quot;
&quot;Incomplete data&quot;
&quot;Unexpected ASN1 tag&quot;
&quot;Item is not readable&quot;
&quot;Read access denied for root of edit&quot;
&quot;Initialization of the GSSAPI context failed&quot;
&quot;Entry has no revision&quot;
&quot;Entry already exists&quot;
&quot;Filesystem has no item&quot;
&quot;Bad URL passed to RA layer&quot;
&quot;Cannot delete a file external&quot;
&quot;Transaction is out of date&quot;
&quot;Error closing filesystem&quot;
&quot;The working copy is missing&quot;
&quot;Invalid configuration value&quot;
&quot;Test skipped&quot;
&quot;Conflict resolution failed&quot;
&quot;Something is wrong with the log message&#39;s contents&quot;
&quot;Certificate uses unknown public key algorithm&quot;
&quot;Working copy and merge source not ready for reintegration&quot;
&quot;Svndiff data contains backward-sliding source view&quot;
&quot;Client/server version mismatch&quot;
&quot;No authentication provider available&quot;
&quot;Svndiff compressed data is invalid&quot;
&quot;Path is not a working copy directory&quot;
&quot;Filesystem is already open&quot;
&quot;ASN1 length mismatch&quot;
&quot;Repository root URL does not match expected root URL&quot;
&quot;Attempt to change immutable filesystem node&quot;
&quot;Can&#39;t create an entry for a forbidden name&quot;
&quot;Left locally modified or unversioned files&quot;
&quot;Lock operation failed&quot;
&quot;The log message file is under version control&quot;
&quot;Invalid operation on the current working directory&quot;
&quot;Bogus URL&quot;
&quot;Invalid ASN1 data&quot;
&quot;Item is out of date&quot;
&quot;Something&#39;s amiss with the wc sqlite database&quot;
&quot;Couldn&#39;t find a repository&quot;
&quot;Bad parent pool passed to svn_make_pool()&quot;
&quot;Path is not locked&quot;
&quot;Svndiff data has invalid header&quot;
&quot;Found invalid signature in certificate&quot;
&quot;Path is not locked&quot;
&quot;Filesystem has no such lock&quot;
&quot;Unsupported RA plugin ABI version&quot;
&quot;Previous operation has not finished; &quot; &quot;run &#39;cleanup&#39; if it was interrupted&quot;
&quot;Operation does not support multiple sources&quot;
&quot;Item index too large for this revision.&quot;
&quot;General filesystem error&quot;
&quot;No versioned parent directories&quot;
&quot;Bad property name&quot;
&quot;Unable to extract data from response header&quot;
&quot;Entry has an invalid attribute&quot;
&quot;A log message was given where none was necessary&quot;
&quot;Username does not match lock owner&quot;
&quot;Connection timed out&quot;
&quot;SQLite busy at transaction rollback; &quot; &quot;resetting all busy SQLite statements to allow rollback&quot; ...
&quot;Certificate signature mismatch&quot;
&quot;Attempting to commit to a URL more than once&quot;
&quot;Transaction is not dead&quot;
&quot;Error running post-commit hook&quot;
&quot;Invalid certificate version&quot;
&quot;The SQLite db is busy&quot;
&quot;Path is not an immediate child of the specified directory&quot;
&quot;Can&#39;t create tunnel&quot;
&quot;Attempted to write to readonly SQLite db&quot;
&quot;Editor drive was aborted&quot;
&quot;Parser error: invalid input&quot;
&quot;Mixed-revision working copy was found but not expected&quot;
&quot;Berkeley DB error&quot;
&quot;Unexpected XML element found&quot;
&quot;Duplicate targets in svn:externals property&quot;
&quot;Unsupported checksum type&quot;
&quot;Invalid switch&quot;
&quot;Filesystem has no such node-rev-id&quot;