neuralpp/doc/html/neural_09_09__exception_8hp...

84 lines
12 KiB
HTML

<!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&nbsp;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>
<li><a href="examples.html"><span>Examples</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.4 - 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 &lt;http://www.gnu.org/licenses/&gt;. *</span>
<a name="l00012"></a>00012 <span class="comment"> **************************************************************************************************/</span>
<a name="l00013"></a>00013
<a name="l00014"></a>00014 <span class="preprocessor">#ifndef __NEURALPP_EXCEPTION</span>
<a name="l00015"></a>00015 <span class="preprocessor"></span><span class="preprocessor">#define __NEURALPP_EXCEPTION</span>
<a name="l00016"></a>00016 <span class="preprocessor"></span>
<a name="l00017"></a>00017 <span class="preprocessor">#include &lt;cstdio&gt;</span>
<a name="l00018"></a>00018 <span class="preprocessor">#include &lt;cstring&gt;</span>
<a name="l00019"></a>00019 <span class="preprocessor">#include &lt;exception&gt;</span>
<a name="l00020"></a>00020
<a name="l00021"></a>00021 <span class="keyword">namespace </span>neuralpp {
<a name="l00026"></a><a class="code" href="classneuralpp_1_1NetworkFileNotFoundException.html">00026</a> <span class="keyword">class </span><a class="code" href="classneuralpp_1_1NetworkFileNotFoundException.html" title="Exception thrown when doing an attempt to load a network from an invalid file.">NetworkFileNotFoundException</a> : <span class="keyword">public</span> std::exception {
<a name="l00027"></a>00027 <span class="keyword">public</span>:
<a name="l00028"></a><a class="code" href="classneuralpp_1_1NetworkFileNotFoundException.html#9603eebdb841f06c9b1007e65cba60f6">00028</a> <a class="code" href="classneuralpp_1_1NetworkFileNotFoundException.html#9603eebdb841f06c9b1007e65cba60f6">NetworkFileNotFoundException</a>() {}
<a name="l00029"></a><a class="code" href="classneuralpp_1_1NetworkFileNotFoundException.html#24cde7729ab22d343f36e638cfc40702">00029</a> <span class="keyword">const</span> <span class="keywordtype">char</span>* <a class="code" href="classneuralpp_1_1NetworkFileNotFoundException.html#24cde7729ab22d343f36e638cfc40702">what</a>() <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="l00030"></a>00030 };
<a name="l00031"></a>00031
<a name="l00037"></a><a class="code" href="classneuralpp_1_1NetworkFileWriteException.html">00037</a> <span class="keyword">class </span><a class="code" href="classneuralpp_1_1NetworkFileWriteException.html" title="Exception thrown when trying to write the network&amp;#39;s information to a file that...">NetworkFileWriteException</a> : <span class="keyword">public</span> std::exception {
<a name="l00038"></a>00038 <span class="keyword">public</span>:
<a name="l00039"></a><a class="code" href="classneuralpp_1_1NetworkFileWriteException.html#83bc897b0ea11a384e0839a39e9fdb48">00039</a> <a class="code" href="classneuralpp_1_1NetworkFileWriteException.html#83bc897b0ea11a384e0839a39e9fdb48">NetworkFileWriteException</a>() {}
<a name="l00040"></a><a class="code" href="classneuralpp_1_1NetworkFileWriteException.html#c8802852cb38d5edf6f490ff3acb6078">00040</a> <span class="keyword">const</span> <span class="keywordtype">char</span>* <a class="code" href="classneuralpp_1_1NetworkFileWriteException.html#c8802852cb38d5edf6f490ff3acb6078">what</a>() <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="l00041"></a>00041 };
<a name="l00042"></a>00042
<a name="l00047"></a><a class="code" href="classneuralpp_1_1InvalidXMLException.html">00047</a> <span class="keyword">class </span><a class="code" href="classneuralpp_1_1InvalidXMLException.html" title="Exception thrown when trying parsing an invalid XML.">InvalidXMLException</a> : <span class="keyword">public</span> std::exception {
<a name="l00048"></a><a class="code" href="classneuralpp_1_1InvalidXMLException.html#e0c63b17f7b5b0df20d8361bc9ee92b4">00048</a> <span class="keywordtype">char</span> *<a class="code" href="classneuralpp_1_1InvalidXMLException.html#e0c63b17f7b5b0df20d8361bc9ee92b4">error</a>;
<a name="l00049"></a>00049
<a name="l00050"></a>00050 <span class="keyword">public</span>:
<a name="l00051"></a><a class="code" href="classneuralpp_1_1InvalidXMLException.html#793d311be88606908abf8c5be1348586">00051</a> <a class="code" href="classneuralpp_1_1InvalidXMLException.html#793d311be88606908abf8c5be1348586">InvalidXMLException</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *err = <span class="stringliteral">" "</span>) {
<a name="l00052"></a>00052 <a class="code" href="classneuralpp_1_1InvalidXMLException.html#e0c63b17f7b5b0df20d8361bc9ee92b4">error</a> = <span class="keyword">new</span> <span class="keywordtype">char</span>[strlen(err)+40];
<a name="l00053"></a>00053 sprintf (<a class="code" href="classneuralpp_1_1InvalidXMLException.html#e0c63b17f7b5b0df20d8361bc9ee92b4">error</a>, <span class="stringliteral">"Attempt to load an invalid XML file: %s"</span>, err);
<a name="l00054"></a>00054 }
<a name="l00055"></a>00055
<a name="l00056"></a><a class="code" href="classneuralpp_1_1InvalidXMLException.html#4a8b81678ed0c319e1715ab5ef9112da">00056</a> <span class="keyword">const</span> <span class="keywordtype">char</span>* <a class="code" href="classneuralpp_1_1InvalidXMLException.html#4a8b81678ed0c319e1715ab5ef9112da">what</a>() <span class="keyword">const</span> throw() { <span class="keywordflow">return</span> <a class="code" href="classneuralpp_1_1InvalidXMLException.html#e0c63b17f7b5b0df20d8361bc9ee92b4">error</a>; }
<a name="l00057"></a>00057 };
<a name="l00058"></a>00058
<a name="l00064"></a><a class="code" href="classneuralpp_1_1NetworkIndexOutOfBoundsException.html">00064</a> <span class="keyword">class </span><a class="code" href="classneuralpp_1_1NetworkIndexOutOfBoundsException.html" title="Exception raised when trying to access a neuron whose index is larger than the number...">NetworkIndexOutOfBoundsException</a> : <span class="keyword">public</span> std::exception {
<a name="l00065"></a>00065 <span class="keyword">public</span>:
<a name="l00066"></a><a class="code" href="classneuralpp_1_1NetworkIndexOutOfBoundsException.html#07141d2225ea9f2d486e755a3660d594">00066</a> <a class="code" href="classneuralpp_1_1NetworkIndexOutOfBoundsException.html#07141d2225ea9f2d486e755a3660d594">NetworkIndexOutOfBoundsException</a>() {}
<a name="l00067"></a><a class="code" href="classneuralpp_1_1NetworkIndexOutOfBoundsException.html#8b65d77cb375a0aa40d5a9ea692bd5c3">00067</a> <span class="keyword">const</span> <span class="keywordtype">char</span>* <a class="code" href="classneuralpp_1_1NetworkIndexOutOfBoundsException.html#8b65d77cb375a0aa40d5a9ea692bd5c3">what</a>() <span class="keyword">const</span> throw() { <span class="keywordflow">return</span> <span class="stringliteral">"Attempt to access a non-existing neuron"</span>; }
<a name="l00068"></a>00068 };
<a name="l00069"></a>00069
<a name="l00075"></a><a class="code" href="classneuralpp_1_1InvalidSynapticalWeightException.html">00075</a> <span class="keyword">class </span><a class="code" href="classneuralpp_1_1InvalidSynapticalWeightException.html" title="Exception raised when, while trying the network or directly, the weight of a synapsis...">InvalidSynapticalWeightException</a> : <span class="keyword">public</span> std::exception {
<a name="l00076"></a>00076 <span class="keyword">public</span>:
<a name="l00077"></a><a class="code" href="classneuralpp_1_1InvalidSynapticalWeightException.html#42e54de0ef9d9f711a483287f4f95916">00077</a> <a class="code" href="classneuralpp_1_1InvalidSynapticalWeightException.html#42e54de0ef9d9f711a483287f4f95916">InvalidSynapticalWeightException</a>() {}
<a name="l00078"></a><a class="code" href="classneuralpp_1_1InvalidSynapticalWeightException.html#8d374dd7e8363b2551ae6e306b11473a">00078</a> <span class="keyword">const</span> <span class="keywordtype">char</span>* <a class="code" href="classneuralpp_1_1InvalidSynapticalWeightException.html#8d374dd7e8363b2551ae6e306b11473a">what</a>() <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="l00079"></a>00079 };
<a name="l00080"></a>00080 }
<a name="l00081"></a>00081
<a name="l00082"></a>00082 <span class="preprocessor">#endif</span>
<a name="l00083"></a>00083 <span class="preprocessor"></span>
</pre></div></div>
<hr size="1"><address style="text-align: right;"><small>Generated on Fri Sep 4 11:25:49 2009 for Neural++ by&nbsp;
<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>