blob: d19d9715b163c936af82b94aeb64d38a5b112a73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1997-2001
* Sleepycat Software. All rights reserved.
*
* Id: cxx_except.h,v 11.2 2001/05/08 18:58:45 bostic Exp
*/
#ifndef _CXX_EXCEPT_H_
#define _CXX_EXCEPT_H_
#include "cxx_common.h"
////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////
//
// Forward declarations
//
class DbException; // forward
class DbMemoryException; // forward
class Dbt; // forward
////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////
//
// Exception classes
//
// Almost any error in the DB library throws a DbException.
// Every exception should be considered an abnormality
// (e.g. bug, misuse of DB, file system error).
//
// NOTE: We would like to inherit from class exception and
// let it handle what(), but there are
// MSVC++ problems when <exception> is included.
//
class _exported DbException
{
public:
virtual ~DbException();
DbException(int err);
DbException(const char *description);
DbException(const char *prefix, int err);
DbException(const char *prefix1, const char *prefix2, int err);
int get_errno() const;
virtual const char *what() const;
DbException(const DbException &);
DbException &operator = (const DbException &);
private:
char *what_;
int err_; // errno
};
//
// A specific sort of exception that occurs when
// user declared memory is insufficient in a Dbt.
//
class _exported DbMemoryException : public DbException
{
public:
virtual ~DbMemoryException();
DbMemoryException(Dbt *dbt);
DbMemoryException(const char *description);
DbMemoryException(const char *prefix, Dbt *dbt);
DbMemoryException(const char *prefix1, const char *prefix2, Dbt *dbt);
Dbt *get_dbt() const;
DbMemoryException(const DbMemoryException &);
DbMemoryException &operator = (const DbMemoryException &);
private:
Dbt *dbt_;
};
#endif /* !_CXX_EXCEPT_H_ */
|