Jannis (0.1preAlpha) | ||
Frames | No Frames |
1: /* NeuronNotFoundException.java - Copyright (c) 2005 by Stefan Thesing 2: <p>This file is part of Jannis.</p> 3: <p>Jannis is free software; you can redistribute it and/or modify 4: it under the terms of the GNU General Public License as published by 5: the Free Software Foundation; either version 2 of the License, or 6: (at your option) any later version.</p> 7: <p>Jannis is distributed in the hope that it will be useful, 8: but WITHOUT ANY WARRANTY; without even the implied warranty of 9: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 10: GNU General Public License for more details.</p> 11: <p>You should have received a copy of the GNU General Public License 12: along with Jannis; if not, write to the<br> 13: Free Software Foundation, Inc.,<br> 14: 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA<br> 15: */ 16: package de.webdings.jannis.exceptions; 17: 18: /** 19: * NeuronNotFoundException is used thrown when 20: * {@link de.webdings.jannis.neuralnet.NeuronIDFinder} is not finding the 21: * neuron it's looking for. 22: * 23: * @author Stefan Thesing<br> 24: * Website: <a href="http://www.webdings.de">http://www.webdings.de</a> 25: * @version 0.1 10.08.2005 26: */ 27: public class NeuronNotFoundException extends Exception { 28: /** 29: * 30: */ 31: private static final long serialVersionUID = 7247478271747682772L; 32: 33: //constructors 34: /** 35: * 36: */ 37: public NeuronNotFoundException() { 38: super(); 39: } 40: 41: /** 42: * @param message 43: */ 44: public NeuronNotFoundException(String message) { 45: super(message); 46: } 47: 48: /** 49: * @param message 50: * @param cause 51: */ 52: public NeuronNotFoundException(String message, Throwable cause) { 53: super(message, cause); 54: } 55: 56: /** 57: * @param cause 58: */ 59: public NeuronNotFoundException(Throwable cause) { 60: super(cause); 61: } 62: }
Jannis (0.1preAlpha) |
© 2005 by Stefan Thesing;
Verbatim copying and redistribution of this entire page are permitted provided this notice is preserved.