<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <title>Neural++: neural++_exception.hpp Source File</title> <link href="doxygen.css" rel="stylesheet" type="text/css"> <link href="tabs.css" rel="stylesheet" type="text/css"> </head><body> <!-- Generated by Doxygen 1.5.6 --> <div class="navigation" id="top"> <div class="tabs"> <ul> <li><a href="index.html"><span>Main Page</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> </ul> </div> <h1>neural++_exception.hpp</h1><a href="neural_09_09__exception_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/**************************************************************************************************</span> <a name="l00002"></a>00002 <span class="comment"> * LibNeural++ v.0.2 - All-purpose library for managing neural networks *</span> <a name="l00003"></a>00003 <span class="comment"> * Copyright (C) 2009, BlackLight *</span> <a name="l00004"></a>00004 <span class="comment"> * *</span> <a name="l00005"></a>00005 <span class="comment"> * This program is free software: you can redistribute it and/or modify it under the terms of the *</span> <a name="l00006"></a>00006 <span class="comment"> * GNU General Public License as published by the Free Software Foundation, either version 3 of *</span> <a name="l00007"></a>00007 <span class="comment"> * the License, or (at your option) any later version. This program is distributed in the hope *</span> <a name="l00008"></a>00008 <span class="comment"> * that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of *</span> <a name="l00009"></a>00009 <span class="comment"> * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for *</span> <a name="l00010"></a>00010 <span class="comment"> * more details. You should have received a copy of the GNU General Public License along with *</span> <a name="l00011"></a>00011 <span class="comment"> * this program. If not, see <http://www.gnu.org/licenses/>. *</span> <a name="l00012"></a>00012 <span class="comment"> **************************************************************************************************/</span> <a name="l00013"></a>00013 <a name="l00014"></a>00014 <span class="preprocessor">#ifndef __cplusplus</span> <a name="l00015"></a>00015 <span class="preprocessor"></span><span class="preprocessor">#error "This is a C++ library, you know, so you'd better use a C++ compiler to compile it"</span> <a name="l00016"></a>00016 <span class="preprocessor"></span><span class="preprocessor">#else</span> <a name="l00017"></a>00017 <span class="preprocessor"></span> <a name="l00018"></a>00018 <span class="preprocessor">#ifndef __NEURALPP_EXCEPTION</span> <a name="l00019"></a>00019 <span class="preprocessor"></span><span class="preprocessor">#define __NEURALPP_EXCEPTION</span> <a name="l00020"></a>00020 <span class="preprocessor"></span> <a name="l00021"></a>00021 <span class="preprocessor">#include <exception></span> <a name="l00022"></a>00022 <a name="l00023"></a>00023 <span class="keyword">namespace </span>neuralpp { <a name="l00028"></a>00028 <span class="keyword">class </span>NetworkFileNotFoundException : <span class="keyword">public</span> std::exception { <a name="l00029"></a>00029 <span class="keyword">public</span>: <a name="l00030"></a>00030 NetworkFileNotFoundException() {} <a name="l00031"></a>00031 <span class="keyword">const</span> <span class="keywordtype">char</span>* what() <span class="keyword">const</span> throw() { <span class="keywordflow">return</span> <span class="stringliteral">"Attempt to load a neural network from an invalid network file"</span>; } <a name="l00032"></a>00032 }; <a name="l00033"></a>00033 <a name="l00039"></a>00039 <span class="keyword">class </span>NetworkFileWriteException : <span class="keyword">public</span> std::exception { <a name="l00040"></a>00040 <span class="keyword">public</span>: <a name="l00041"></a>00041 NetworkFileWriteException() {} <a name="l00042"></a>00042 <span class="keyword">const</span> <span class="keywordtype">char</span>* what() <span class="keyword">const</span> throw() { <span class="keywordflow">return</span> <span class="stringliteral">"There was an error while writing the network file"</span>; } <a name="l00043"></a>00043 }; <a name="l00044"></a>00044 <a name="l00049"></a>00049 <span class="keyword">class </span>InvalidXMLException : <span class="keyword">public</span> std::exception { <a name="l00050"></a>00050 <span class="keyword">public</span>: <a name="l00051"></a>00051 InvalidXMLException() {} <a name="l00052"></a>00052 <span class="keyword">const</span> <span class="keywordtype">char</span>* what() <span class="keyword">const</span> throw() { <span class="keywordflow">return</span> <span class="stringliteral">"Attempt to load an invalid XML file"</span>; } <a name="l00053"></a>00053 }; <a name="l00054"></a>00054 <a name="l00060"></a>00060 <span class="keyword">class </span>NetworkIndexOutOfBoundsException : <span class="keyword">public</span> std::exception { <a name="l00061"></a>00061 <span class="keyword">public</span>: <a name="l00062"></a>00062 NetworkIndexOutOfBoundsException() {} <a name="l00063"></a>00063 <span class="keyword">const</span> <span class="keywordtype">char</span>* what() <span class="keyword">const</span> throw() { <span class="keywordflow">return</span> <span class="stringliteral">"Attempt to access a non-existing neuron"</span>; } <a name="l00064"></a>00064 }; <a name="l00065"></a>00065 <a name="l00071"></a>00071 <span class="keyword">class </span>InvalidSynapticalWeightException : <span class="keyword">public</span> std::exception { <a name="l00072"></a>00072 <span class="keyword">public</span>: <a name="l00073"></a>00073 InvalidSynapticalWeightException() {} <a name="l00074"></a>00074 <span class="keyword">const</span> <span class="keywordtype">char</span>* what() <span class="keyword">const</span> throw() { <span class="keywordflow">return</span> <span class="stringliteral">"Attempt to set an invalid weight for the synapsis"</span>; } <a name="l00075"></a>00075 }; <a name="l00076"></a>00076 } <a name="l00077"></a>00077 <a name="l00078"></a>00078 <span class="preprocessor">#endif</span> <a name="l00079"></a>00079 <span class="preprocessor"></span><span class="preprocessor">#endif</span> <a name="l00080"></a>00080 <span class="preprocessor"></span> </pre></div></div> <hr size="1"><address style="text-align: right;"><small>Generated on Sat Aug 15 02:56:02 2009 for Neural++ by <a href="http://www.doxygen.org/index.html"> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.6 </small></address> </body> </html>