~ubuntu-branches/debian/sid/subversion/sid

« back to all changes in this revision

Viewing changes to subversion/include/svn_error_codes.h

  • Committer: Package Import Robot
  • Author(s): James McCoy, Peter Samuelson, James McCoy
  • Date: 2014-01-12 19:48:33 UTC
  • mfrom: (0.2.10)
  • Revision ID: package-import@ubuntu.com-20140112194833-w3axfwksn296jn5x
Tags: 1.8.5-1
[ Peter Samuelson ]
* New upstream release.  (Closes: #725787) Rediff patches:
  - Remove apr-abi1 (applied upstream), rename apr-abi2 to apr-abi
  - Remove loosen-sqlite-version-check (shouldn't be needed)
  - Remove java-osgi-metadata (applied upstream)
  - svnmucc prompts for a changelog if none is provided. (Closes: #507430)
  - Remove fix-bdb-version-detection, upstream uses "apu-config --dbm-libs"
  - Remove ruby-test-wc (applied upstream)
  - Fix “svn diff -r N file” when file has svn:mime-type set.
    (Closes: #734163)
  - Support specifying an encoding for mod_dav_svn's environment in which
    hooks are run.  (Closes: #601544)
  - Fix ordering of “svnadmin dump” paths with certain APR versions.
    (Closes: #687291)
  - Provide a better error message when authentication fails with an
    svn+ssh:// URL.  (Closes: #273874)
  - Updated Polish translations.  (Closes: #690815)

[ James McCoy ]
* Remove all traces of libneon, replaced by libserf.
* patches/sqlite_3.8.x_workaround: Upstream fix for wc-queries-test test
  failurse.
* Run configure with --with-apache-libexecdir, which allows removing part of
  patches/rpath.
* Re-enable auth-test as upstream has fixed the problem of picking up
  libraries from the environment rather than the build tree.
  (Closes: #654172)
* Point LD_LIBRARY_PATH at the built auth libraries when running the svn
  command during the build.  (Closes: #678224)
* Add a NEWS entry describing how to configure mod_dav_svn to understand
  UTF-8.  (Closes: #566148)
* Remove ancient transitional package, libsvn-ruby.
* Enable compatibility with Sqlite3 versions back to Wheezy.
* Enable hardening flags.  (Closes: #734918)
* patches/build-fixes: Enable verbose build logs.
* Build against the default ruby version.  (Closes: #722393)

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
   not defined the enumerated constants yet.  */
47
47
#if defined(SVN_ERROR_BUILD_ARRAY) || !defined(SVN_ERROR_ENUM_DEFINED)
48
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
 
49
53
 
50
54
#include <apr_errno.h>     /* APR's error system */
51
55
 
59
63
 
60
64
#define SVN_ERROR_START \
61
65
        static const err_defn error_table[] = { \
62
 
          { SVN_WARNING, "Warning" },
63
 
#define SVN_ERRDEF(num, offset, str) { num, str },
64
 
#define SVN_ERROR_END { 0, NULL } };
 
66
          { SVN_WARNING, "SVN_WARNING", "Warning" },
 
67
#define SVN_ERRDEF(num, offset, str) { num, #num, str },
 
68
#define SVN_ERROR_END { 0, NULL, NULL } };
65
69
 
66
70
#elif !defined(SVN_ERROR_ENUM_DEFINED)
67
71
 
224
228
             SVN_ERR_BAD_CATEGORY_START + 14,
225
229
             "Invalid changelist name")
226
230
 
 
231
  /** @since New in 1.8. */
 
232
  SVN_ERRDEF(SVN_ERR_BAD_ATOMIC,
 
233
             SVN_ERR_BAD_CATEGORY_START + 15,
 
234
             "Invalid atomic")
 
235
 
227
236
  /* xml errors */
228
237
 
229
238
  SVN_ERRDEF(SVN_ERR_XML_ATTRIB_NOT_FOUND,
528
537
  /** @since New in 1.7. */
529
538
  SVN_ERRDEF(SVN_ERR_WC_INVALID_OPERATION_DEPTH,
530
539
             SVN_ERR_WC_CATEGORY_START + 38,
531
 
             "The operation can not be performed with the specified depth")
 
540
             "The operation cannot be performed with the specified depth")
532
541
 
533
542
  /** @since New in 1.7. */
534
543
  SVN_ERRDEF(SVN_ERR_WC_PATH_ACCESS_DENIED,
535
544
             SVN_ERR_WC_CATEGORY_START + 39,
536
545
             "Couldn't open a working copy file because access was denied")
537
546
 
 
547
  /** @since New in 1.8. */
 
548
  SVN_ERRDEF(SVN_ERR_WC_MIXED_REVISIONS,
 
549
             SVN_ERR_WC_CATEGORY_START + 40,
 
550
             "Mixed-revision working copy was found but not expected")
 
551
 
 
552
  /** @since New in 1.8 */
 
553
  SVN_ERRDEF(SVN_ERR_WC_DUPLICATE_EXTERNALS_TARGET,
 
554
             SVN_ERR_WC_CATEGORY_START + 41,
 
555
             "Duplicate targets in svn:externals property")
 
556
 
538
557
  /* fs errors */
539
558
 
540
559
  SVN_ERRDEF(SVN_ERR_FS_GENERAL,
762
781
             "Property value in filesystem differs from the provided "
763
782
             "base value")
764
783
 
 
784
  /** @since New in 1.8. */
 
785
  SVN_ERRDEF(SVN_ERR_FS_INCORRECT_EDITOR_COMPLETION,
 
786
             SVN_ERR_FS_CATEGORY_START + 50,
 
787
             "The filesystem editor completion process was not followed")
 
788
 
 
789
  /** @since New in 1.8. */
 
790
  SVN_ERRDEF(SVN_ERR_FS_PACKED_REVPROP_READ_FAILURE,
 
791
             SVN_ERR_FS_CATEGORY_START + 51,
 
792
             "A packed revprop could not be read")
 
793
 
 
794
  /** @since New in 1.8. */
 
795
  SVN_ERRDEF(SVN_ERR_FS_REVPROP_CACHE_INIT_FAILURE,
 
796
             SVN_ERR_FS_CATEGORY_START + 52,
 
797
             "Could not initialize the revprop caching infrastructure.")
 
798
 
765
799
  /* repos errors */
766
800
 
767
801
  SVN_ERRDEF(SVN_ERR_REPOS_LOCKED,
871
905
             SVN_ERR_RA_CATEGORY_START + 11,
872
906
             "Session URL does not match expected session URL")
873
907
 
 
908
  /** @since New in 1.8. */
 
909
  SVN_ERRDEF(SVN_ERR_RA_CANNOT_CREATE_TUNNEL,
 
910
             SVN_ERR_RA_CATEGORY_START + 12,
 
911
             "Can't create tunnel")
 
912
 
874
913
  /* ra_dav errors */
875
914
 
876
915
  SVN_ERRDEF(SVN_ERR_RA_DAV_SOCK_INIT,
905
944
             "Invalid configuration value")
906
945
 
907
946
  /** @deprecated To improve consistency between ra layers, this error code
908
 
      is replaced in ra_{neon|serf} by SVN_ERR_FS_NOT_FOUND.
 
947
      is replaced in ra_serf by SVN_ERR_FS_NOT_FOUND.
909
948
      Slated for removal in the next major release. */
910
949
  SVN_ERRDEF(SVN_ERR_RA_DAV_PATH_NOT_FOUND,
911
950
             SVN_ERR_RA_DAV_CATEGORY_START + 7,
949
988
  SVN_ERRDEF(SVN_ERR_RA_LOCAL_REPOS_OPEN_FAILED,
950
989
             SVN_ERR_RA_LOCAL_CATEGORY_START + 1,
951
990
             "Couldn't open a repository")
952
 
  /* ra_svn errors */
953
 
 
954
 
  SVN_ERRDEF(SVN_ERR_RA_SVN_CMD_ERR,
955
 
             SVN_ERR_RA_SVN_CATEGORY_START + 0,
956
 
             "Special code for wrapping server errors to report to client")
957
 
 
958
 
  SVN_ERRDEF(SVN_ERR_RA_SVN_UNKNOWN_CMD,
959
 
             SVN_ERR_RA_SVN_CATEGORY_START + 1,
960
 
             "Unknown svn protocol command")
961
 
 
962
 
  SVN_ERRDEF(SVN_ERR_RA_SVN_CONNECTION_CLOSED,
963
 
             SVN_ERR_RA_SVN_CATEGORY_START + 2,
964
 
             "Network connection closed unexpectedly")
965
 
 
966
 
  SVN_ERRDEF(SVN_ERR_RA_SVN_IO_ERROR,
967
 
             SVN_ERR_RA_SVN_CATEGORY_START + 3,
968
 
             "Network read/write error")
969
 
 
970
 
  SVN_ERRDEF(SVN_ERR_RA_SVN_MALFORMED_DATA,
971
 
             SVN_ERR_RA_SVN_CATEGORY_START + 4,
972
 
             "Malformed network data")
973
 
 
974
 
  SVN_ERRDEF(SVN_ERR_RA_SVN_REPOS_NOT_FOUND,
975
 
             SVN_ERR_RA_SVN_CATEGORY_START + 5,
976
 
             "Couldn't find a repository")
977
 
 
978
 
  SVN_ERRDEF(SVN_ERR_RA_SVN_BAD_VERSION,
979
 
             SVN_ERR_RA_SVN_CATEGORY_START + 6,
980
 
             "Client/server version mismatch")
981
 
 
982
 
  /** @since New in 1.5. */
983
 
  SVN_ERRDEF(SVN_ERR_RA_SVN_NO_MECHANISMS,
984
 
             SVN_ERR_RA_SVN_CATEGORY_START + 7,
985
 
             "Cannot negotiate authentication mechanism")
986
 
 
987
 
  /** @since New in 1.7  */
988
 
  SVN_ERRDEF(SVN_ERR_RA_SVN_EDIT_ABORTED,
989
 
             SVN_ERR_RA_SVN_CATEGORY_START + 8,
990
 
             "Editor drive was aborted")
991
 
 
992
 
  /* libsvn_ra_serf errors */
993
 
  /** @since New in 1.5. */
994
 
  SVN_ERRDEF(SVN_ERR_RA_SERF_SSPI_INITIALISATION_FAILED,
995
 
             SVN_ERR_RA_SERF_CATEGORY_START + 0,
996
 
             "Initialization of SSPI library failed")
997
 
  /** @since New in 1.5. */
998
 
  SVN_ERRDEF(SVN_ERR_RA_SERF_SSL_CERT_UNTRUSTED,
999
 
             SVN_ERR_RA_SERF_CATEGORY_START + 1,
1000
 
             "Server SSL certificate untrusted")
1001
 
  /** @since New in 1.7. */
1002
 
  SVN_ERRDEF(SVN_ERR_RA_SERF_GSSAPI_INITIALISATION_FAILED,
1003
 
             SVN_ERR_RA_SERF_CATEGORY_START + 2,
1004
 
             "Initialization of the GSSAPI context failed")
1005
 
 
1006
 
  /** @since New in 1.7. */
1007
 
  SVN_ERRDEF(SVN_ERR_RA_SERF_WRAPPED_ERROR,
1008
 
             SVN_ERR_RA_SERF_CATEGORY_START + 3,
1009
 
             "While handling serf response:")
1010
 
 
1011
 
  /* libsvn_auth errors */
1012
 
 
1013
 
       /* this error can be used when an auth provider doesn't have
1014
 
          the creds, but no other "real" error occurred. */
1015
 
  SVN_ERRDEF(SVN_ERR_AUTHN_CREDS_UNAVAILABLE,
1016
 
             SVN_ERR_AUTHN_CATEGORY_START + 0,
1017
 
             "Credential data unavailable")
1018
 
 
1019
 
  SVN_ERRDEF(SVN_ERR_AUTHN_NO_PROVIDER,
1020
 
             SVN_ERR_AUTHN_CATEGORY_START + 1,
1021
 
             "No authentication provider available")
1022
 
 
1023
 
  SVN_ERRDEF(SVN_ERR_AUTHN_PROVIDERS_EXHAUSTED,
1024
 
             SVN_ERR_AUTHN_CATEGORY_START + 2,
1025
 
             "All authentication providers exhausted")
1026
 
 
1027
 
  SVN_ERRDEF(SVN_ERR_AUTHN_CREDS_NOT_SAVED,
1028
 
             SVN_ERR_AUTHN_CATEGORY_START + 3,
1029
 
             "Credentials not saved")
1030
 
 
1031
 
  /** @since New in 1.5. */
1032
 
  SVN_ERRDEF(SVN_ERR_AUTHN_FAILED,
1033
 
             SVN_ERR_AUTHN_CATEGORY_START + 4,
1034
 
             "Authentication failed")
1035
 
 
1036
 
  /* authorization errors */
1037
 
 
1038
 
  SVN_ERRDEF(SVN_ERR_AUTHZ_ROOT_UNREADABLE,
1039
 
             SVN_ERR_AUTHZ_CATEGORY_START + 0,
1040
 
             "Read access denied for root of edit")
1041
 
 
1042
 
  /** @since New in 1.1. */
1043
 
  SVN_ERRDEF(SVN_ERR_AUTHZ_UNREADABLE,
1044
 
             SVN_ERR_AUTHZ_CATEGORY_START + 1,
1045
 
             "Item is not readable")
1046
 
 
1047
 
  /** @since New in 1.1. */
1048
 
  SVN_ERRDEF(SVN_ERR_AUTHZ_PARTIALLY_READABLE,
1049
 
             SVN_ERR_AUTHZ_CATEGORY_START + 2,
1050
 
             "Item is partially readable")
1051
 
 
1052
 
  SVN_ERRDEF(SVN_ERR_AUTHZ_INVALID_CONFIG,
1053
 
             SVN_ERR_AUTHZ_CATEGORY_START + 3,
1054
 
             "Invalid authz configuration")
1055
 
 
1056
 
  /** @since New in 1.3 */
1057
 
  SVN_ERRDEF(SVN_ERR_AUTHZ_UNWRITABLE,
1058
 
             SVN_ERR_AUTHZ_CATEGORY_START + 4,
1059
 
             "Item is not writable")
1060
991
 
1061
992
  /* svndiff errors */
1062
993
 
1084
1015
             SVN_ERR_SVNDIFF_CATEGORY_START + 5,
1085
1016
             "Svndiff compressed data is invalid")
1086
1017
 
1087
 
  /* libsvn_diff errors */
1088
 
 
1089
 
  SVN_ERRDEF(SVN_ERR_DIFF_DATASOURCE_MODIFIED,
1090
 
             SVN_ERR_DIFF_CATEGORY_START + 0,
1091
 
             "Diff data source modified unexpectedly")
1092
 
 
1093
1018
  /* mod_dav_svn errors */
1094
1019
 
1095
1020
  SVN_ERRDEF(SVN_ERR_APMOD_MISSING_PATH_TO_FS,
1219
1144
             SVN_ERR_CLIENT_CATEGORY_START + 22,
1220
1145
             "Can't perform this operation without a valid lock token")
1221
1146
 
1222
 
/** @since New in 1.7. */
 
1147
  /** @since New in 1.7. */
1223
1148
  SVN_ERRDEF(SVN_ERR_CLIENT_FORBIDDEN_BY_SERVER,
1224
1149
             SVN_ERR_CLIENT_CATEGORY_START + 23,
1225
1150
             "The operation is forbidden by the server")
1350
1275
  /** @since New in 1.6. */
1351
1276
  SVN_ERRDEF(SVN_ERR_NO_APR_MEMCACHE,
1352
1277
             SVN_ERR_MISC_CATEGORY_START + 28,
1353
 
             "apr memcache library not available")
 
1278
             "APR memcache library not available")
1354
1279
 
1355
1280
  /** @since New in 1.6. */
1356
1281
  SVN_ERRDEF(SVN_ERR_ATOMIC_INIT_FAILURE,
1367
1292
             SVN_ERR_MISC_CATEGORY_START + 31,
1368
1293
             "Attempted to write to readonly SQLite db")
1369
1294
 
1370
 
  /** @since New in 1.6. */
 
1295
  /** @since New in 1.6.
 
1296
   * @deprecated the internal sqlite support code does not manage schemas
 
1297
   * any longer.  */
1371
1298
  SVN_ERRDEF(SVN_ERR_SQLITE_UNSUPPORTED_SCHEMA,
1372
1299
             SVN_ERR_MISC_CATEGORY_START + 32,
1373
1300
             "Unsupported schema found in SQLite db")
1388
1315
             SVN_ERR_MISC_CATEGORY_START + 35,
1389
1316
             "Constraint error in SQLite db")
1390
1317
 
 
1318
  /** @since New in 1.8. */
 
1319
  SVN_ERRDEF(SVN_ERR_TOO_MANY_MEMCACHED_SERVERS,
 
1320
             SVN_ERR_MISC_CATEGORY_START + 36,
 
1321
             "Too many memcached servers configured")
 
1322
 
 
1323
  /** @since New in 1.8. */
 
1324
  SVN_ERRDEF(SVN_ERR_MALFORMED_VERSION_STRING,
 
1325
             SVN_ERR_MISC_CATEGORY_START + 37,
 
1326
             "Failed to parse version number string")
 
1327
 
 
1328
  /** @since New in 1.8. */
 
1329
  SVN_ERRDEF(SVN_ERR_CORRUPTED_ATOMIC_STORAGE,
 
1330
             SVN_ERR_MISC_CATEGORY_START + 38,
 
1331
             "Atomic data storage is corrupt")
 
1332
 
1391
1333
  /* command-line client errors */
1392
1334
 
1393
1335
  SVN_ERRDEF(SVN_ERR_CL_ARG_PARSING_ERROR,
1438
1380
             SVN_ERR_CL_CATEGORY_START + 11,
1439
1381
             "Failed processing one or more externals definitions")
1440
1382
 
 
1383
  /* ra_svn errors */
 
1384
 
 
1385
  SVN_ERRDEF(SVN_ERR_RA_SVN_CMD_ERR,
 
1386
             SVN_ERR_RA_SVN_CATEGORY_START + 0,
 
1387
             "Special code for wrapping server errors to report to client")
 
1388
 
 
1389
  SVN_ERRDEF(SVN_ERR_RA_SVN_UNKNOWN_CMD,
 
1390
             SVN_ERR_RA_SVN_CATEGORY_START + 1,
 
1391
             "Unknown svn protocol command")
 
1392
 
 
1393
  SVN_ERRDEF(SVN_ERR_RA_SVN_CONNECTION_CLOSED,
 
1394
             SVN_ERR_RA_SVN_CATEGORY_START + 2,
 
1395
             "Network connection closed unexpectedly")
 
1396
 
 
1397
  SVN_ERRDEF(SVN_ERR_RA_SVN_IO_ERROR,
 
1398
             SVN_ERR_RA_SVN_CATEGORY_START + 3,
 
1399
             "Network read/write error")
 
1400
 
 
1401
  SVN_ERRDEF(SVN_ERR_RA_SVN_MALFORMED_DATA,
 
1402
             SVN_ERR_RA_SVN_CATEGORY_START + 4,
 
1403
             "Malformed network data")
 
1404
 
 
1405
  SVN_ERRDEF(SVN_ERR_RA_SVN_REPOS_NOT_FOUND,
 
1406
             SVN_ERR_RA_SVN_CATEGORY_START + 5,
 
1407
             "Couldn't find a repository")
 
1408
 
 
1409
  SVN_ERRDEF(SVN_ERR_RA_SVN_BAD_VERSION,
 
1410
             SVN_ERR_RA_SVN_CATEGORY_START + 6,
 
1411
             "Client/server version mismatch")
 
1412
 
 
1413
  /** @since New in 1.5. */
 
1414
  SVN_ERRDEF(SVN_ERR_RA_SVN_NO_MECHANISMS,
 
1415
             SVN_ERR_RA_SVN_CATEGORY_START + 7,
 
1416
             "Cannot negotiate authentication mechanism")
 
1417
 
 
1418
  /** @since New in 1.7  */
 
1419
  SVN_ERRDEF(SVN_ERR_RA_SVN_EDIT_ABORTED,
 
1420
             SVN_ERR_RA_SVN_CATEGORY_START + 8,
 
1421
             "Editor drive was aborted")
 
1422
 
 
1423
  /* libsvn_auth errors */
 
1424
 
 
1425
       /* this error can be used when an auth provider doesn't have
 
1426
          the creds, but no other "real" error occurred. */
 
1427
  SVN_ERRDEF(SVN_ERR_AUTHN_CREDS_UNAVAILABLE,
 
1428
             SVN_ERR_AUTHN_CATEGORY_START + 0,
 
1429
             "Credential data unavailable")
 
1430
 
 
1431
  SVN_ERRDEF(SVN_ERR_AUTHN_NO_PROVIDER,
 
1432
             SVN_ERR_AUTHN_CATEGORY_START + 1,
 
1433
             "No authentication provider available")
 
1434
 
 
1435
  SVN_ERRDEF(SVN_ERR_AUTHN_PROVIDERS_EXHAUSTED,
 
1436
             SVN_ERR_AUTHN_CATEGORY_START + 2,
 
1437
             "All authentication providers exhausted")
 
1438
 
 
1439
  SVN_ERRDEF(SVN_ERR_AUTHN_CREDS_NOT_SAVED,
 
1440
             SVN_ERR_AUTHN_CATEGORY_START + 3,
 
1441
             "Credentials not saved")
 
1442
 
 
1443
  /** @since New in 1.5. */
 
1444
  SVN_ERRDEF(SVN_ERR_AUTHN_FAILED,
 
1445
             SVN_ERR_AUTHN_CATEGORY_START + 4,
 
1446
             "Authentication failed")
 
1447
 
 
1448
  /* authorization errors */
 
1449
 
 
1450
  SVN_ERRDEF(SVN_ERR_AUTHZ_ROOT_UNREADABLE,
 
1451
             SVN_ERR_AUTHZ_CATEGORY_START + 0,
 
1452
             "Read access denied for root of edit")
 
1453
 
 
1454
  /** @since New in 1.1. */
 
1455
  SVN_ERRDEF(SVN_ERR_AUTHZ_UNREADABLE,
 
1456
             SVN_ERR_AUTHZ_CATEGORY_START + 1,
 
1457
             "Item is not readable")
 
1458
 
 
1459
  /** @since New in 1.1. */
 
1460
  SVN_ERRDEF(SVN_ERR_AUTHZ_PARTIALLY_READABLE,
 
1461
             SVN_ERR_AUTHZ_CATEGORY_START + 2,
 
1462
             "Item is partially readable")
 
1463
 
 
1464
  SVN_ERRDEF(SVN_ERR_AUTHZ_INVALID_CONFIG,
 
1465
             SVN_ERR_AUTHZ_CATEGORY_START + 3,
 
1466
             "Invalid authz configuration")
 
1467
 
 
1468
  /** @since New in 1.3 */
 
1469
  SVN_ERRDEF(SVN_ERR_AUTHZ_UNWRITABLE,
 
1470
             SVN_ERR_AUTHZ_CATEGORY_START + 4,
 
1471
             "Item is not writable")
 
1472
 
 
1473
 
 
1474
  /* libsvn_diff errors */
 
1475
 
 
1476
  SVN_ERRDEF(SVN_ERR_DIFF_DATASOURCE_MODIFIED,
 
1477
             SVN_ERR_DIFF_CATEGORY_START + 0,
 
1478
             "Diff data source modified unexpectedly")
 
1479
 
 
1480
  /* libsvn_ra_serf errors */
 
1481
  /** @since New in 1.5. */
 
1482
  SVN_ERRDEF(SVN_ERR_RA_SERF_SSPI_INITIALISATION_FAILED,
 
1483
             SVN_ERR_RA_SERF_CATEGORY_START + 0,
 
1484
             "Initialization of SSPI library failed")
 
1485
  /** @since New in 1.5. */
 
1486
  SVN_ERRDEF(SVN_ERR_RA_SERF_SSL_CERT_UNTRUSTED,
 
1487
             SVN_ERR_RA_SERF_CATEGORY_START + 1,
 
1488
             "Server SSL certificate untrusted")
 
1489
  /** @since New in 1.7.
 
1490
      @deprecated GSSAPI now handled by serf rather than libsvn_ra_serf. */
 
1491
  SVN_ERRDEF(SVN_ERR_RA_SERF_GSSAPI_INITIALISATION_FAILED,
 
1492
             SVN_ERR_RA_SERF_CATEGORY_START + 2,
 
1493
             "Initialization of the GSSAPI context failed")
 
1494
 
 
1495
  /** @since New in 1.7. */
 
1496
  SVN_ERRDEF(SVN_ERR_RA_SERF_WRAPPED_ERROR,
 
1497
             SVN_ERR_RA_SERF_CATEGORY_START + 3,
 
1498
             "While handling serf response:")
 
1499
 
1441
1500
  /* malfunctions such as assertion failures */
1442
1501
 
1443
1502
  SVN_ERRDEF(SVN_ERR_ASSERTION_FAIL,