565ed2e12fd498e5483365a5ba4582c05b6095dc
[senf.git] / Utils / Exception.cci
1 // $Id$
2 //
3 // Copyright (C) 2006 Stefan Bund <g0dil@senf.berlios.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the
17 // Free Software Foundation, Inc.,
18 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
20 /** \file
21     \brief Exception inline non-template implementation */
22
23 // Custom includes
24
25 #define prefix_ inline
26 ///////////////////////////////cci.p///////////////////////////////////////
27
28 prefix_  senf::SystemException::SystemException(int err_)
29     : where(0), err(err_) 
30 {
31     init(); 
32 }
33
34 prefix_ senf::SystemException::SystemException(char const * where_, int err_)
35     : where(where_), err(err_) 
36
37     init(); 
38 }
39
40 prefix_  senf::SystemException::~SystemException()
41     throw()
42 {}
43
44 ///////////////////////////////cci.e///////////////////////////////////////
45 #undef prefix_
46
47 \f
48 // Local Variables:
49 // mode: c++
50 // End: