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
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>Simple&nbsp;C++&nbsp;ODBC&nbsp;Database&nbsp;API: Exception.h Source File</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.4.2 -->
<div class="qindex"><a class="qindex" href="main.html">Main Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="pages.html">Related Pages</a> | <a class="qindex" href="examples.html">Examples</a></div>
<h1>Exception.h</h1><div class="fragment"><pre class="fragment">00001 <span class="comment">/* -*- c++ -*-</span>
00002 <span class="comment"> * __BEGIN_COPYRIGHT</span>
00003 <span class="comment"> * SimpleDB API</span>
00004 <span class="comment"> * </span>
00005 <span class="comment"> * Copyright (C) 2005 Eminence Technology Pty Ltd</span>
00006 <span class="comment"> * </span>
00007 <span class="comment"> * This library is free software; you can redistribute it and/or</span>
00008 <span class="comment"> * modify it under the terms of the GNU Lesser General Public</span>
00009 <span class="comment"> * License as published by the Free Software Foundation; either</span>
00010 <span class="comment"> * version 2.1 of the License, or (at your option) any later version.</span>
00011 <span class="comment"> * </span>
00012 <span class="comment"> * This library is distributed in the hope that it will be useful,</span>
00013 <span class="comment"> * but WITHOUT ANY WARRANTY; without even the implied warranty of</span>
00014 <span class="comment"> * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU</span>
00015 <span class="comment"> * Lesser General Public License for more details.</span>
00016 <span class="comment"> * </span>
00017 <span class="comment"> * You can view the GNU Lesser General Public Licence at</span>
00018 <span class="comment"> * http://www.gnu.org/licenses/lgpl.html or you can write to the Free Software</span>
00019 <span class="comment"> * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA</span>
00020 <span class="comment"> * </span>
00021 <span class="comment"> * Eminence Technology Pty Ltd can be contacted by writing to</span>
00022 <span class="comment"> * Eminence Technology, PO Box 118, Moorooka QLD 4105, Australia.</span>
00023 <span class="comment"> * Alternatively, you may email opensource [at] eminence [dot] com [dot] au</span>
00024 <span class="comment"> * __END_COPYRIGHT</span>
00025 <span class="comment"> */</span>
00026
00027 <span class="preprocessor">#ifndef __SIMPLEDB_EXCEPTION_H_</span>
00028 <span class="preprocessor"></span><span class="preprocessor">#define __SIMPLEDB_EXCEPTION_H_</span>
00029 <span class="preprocessor"></span>
00030 <span class="preprocessor">#include <exception></span>
00031 <span class="preprocessor">#include <string></span>
00032
00033 <span class="keyword">namespace </span>SimpleDB {
00034
<a name="l00037"></a><a class="code" href="classSimpleDB_1_1Exception.html">00037</a> <span class="keyword">class </span><a class="code" href="classSimpleDB_1_1Exception.html">Exception</a> : <span class="keyword">public</span> std::exception {
00038 <span class="keyword">public</span>:
00039
00044 <a class="code" href="classSimpleDB_1_1Exception.html#a0">Exception</a>(<span class="keyword">const</span> std::string& <a class="code" href="classSimpleDB_1_1Exception.html#o0">message</a>) <span class="keywordflow">throw</span>();
00045
00048 <span class="keyword">const</span> <span class="keywordtype">char</span>* <a class="code" href="classSimpleDB_1_1Exception.html#a1">what</a>() <span class="keyword">const</span> <span class="keywordflow">throw</span>();
00049
<a name="l00052"></a><a class="code" href="classSimpleDB_1_1Exception.html#o0">00052</a> std::string message;
00053
00056 <span class="keyword">virtual</span> <a class="code" href="classSimpleDB_1_1Exception.html#a2">~Exception</a>() throw();
00057
00058 };
00059 }
00060
00061 #endif
</pre></div><hr>
<div align="right"><small>
Copyright (C) 2005 <a target="top" href="http://www.eminence.com.au">Eminence Technology Pty Ltd</a>.<br>
Documentation pages generated by doxygen.</small><br>
<a href="http://sourceforge.net"><img src="http://sourceforge.net/sflogo.php?group_id=129109&type=1" width="88" height="31" border="0" alt="SourceForge.net Logo" /></a>
</div>
|