rdbxx  1.0.10
RDBErr.h
1 #ifndef RDBErr_h
2 #define RDBErr_h
3 
4 /* --8<--8<--8<--8<--
5  *
6  * Copyright (C) 2006 Smithsonian Astrophysical Observatory
7  *
8  * This file is part of RDB
9  *
10  * RDB is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  *
15  * RDB is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the
22  * Free Software Foundation, Inc.
23  * 51 Franklin Street, Fifth Floor
24  * Boston, MA 02110-1301, USA
25  *
26  * -->8-->8-->8-->8-- */
27 
28 #include <Exception/Exception.h>
29 
31 class RDBErr : public Exception {
32  public:
34  RDBErr( const std::string& msg );
36  RDBErr( );
38  ~RDBErr( );
39 
40 };
41 
42 #endif
The parent class for all RDB related exceptions.
Definition: RDBErr.h:31
RDBErr()
Constructor.
Definition: RDBErr.cc:29
~RDBErr()
Destructor.
Definition: RDBErr.cc:31