Reorganize the output to "svnserve --help".
[svn.git] / subversion / libsvn_fs_fs / err.h
blob8f9e03379295f5f83af262866c4f2bfbfa34fda3
1 /*
2 * err.h : interface to routines for returning Berkeley DB errors
4 * ====================================================================
5 * Copyright (c) 2000-2004 CollabNet. All rights reserved.
7 * This software is licensed as described in the file COPYING, which
8 * you should have received as part of this distribution. The terms
9 * are also available at http://subversion.tigris.org/license-1.html.
10 * If newer versions of this license are posted there, you may use a
11 * newer version instead, at your option.
13 * This software consists of voluntary contributions made by many
14 * individuals. For exact contribution history, see the revision
15 * history and logs, available at http://subversion.tigris.org/.
16 * ====================================================================
21 #ifndef SVN_LIBSVN_FS_ERR_H
22 #define SVN_LIBSVN_FS_ERR_H
24 #include <apr_pools.h>
26 #include "svn_error.h"
27 #include "svn_fs.h"
29 #ifdef __cplusplus
30 extern "C" {
31 #endif /* __cplusplus */
35 /* Building common error objects. */
38 /* SVN_ERR_FS_ID_NOT_FOUND: something in FS refers to node revision
39 ID, but that node revision doesn't exist. */
40 svn_error_t *svn_fs_fs__err_dangling_id(svn_fs_t *fs,
41 const svn_fs_id_t *id);
43 /* SVN_ERR_FS_CORRUPT: the lockfile for PATH in FS is corrupt. */
44 svn_error_t *svn_fs_fs__err_corrupt_lockfile(svn_fs_t *fs,
45 const char *path);
47 #ifdef __cplusplus
49 #endif /* __cplusplus */
51 #endif /* SVN_LIBSVN_FS_ERR_H */