Jannis (0.1preAlpha) | ||
Frames | No Frames |
1: /* PatternGiverReaderCommunicationException.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: * PatternGiverReaderCommunicationException is thrown when there is a problem 20: * in the communication between {@link de.webdings.jannis.neuralnet.PatternGiver} and 21: * {@link de.webdings.jannis.neuralnet.PatternReader}. 22: * @author Stefan Thesing<br> 23: * Website: <a href="http://www.webdings.de">http://www.webdings.de</a> 24: * 25: * @version 0.1 10.08.2005 26: */ 27: public class PatternGiverReaderCommunicationException extends Exception { 28: 29: /** 30: * 31: */ 32: private static final long serialVersionUID = 8903122370237467163L; 33: 34: /** 35: * 36: */ 37: public PatternGiverReaderCommunicationException() { 38: super(); 39: } 40: 41: /** 42: * @param message 43: */ 44: public PatternGiverReaderCommunicationException(String message) { 45: super(message); 46: } 47: 48: /** 49: * @param message 50: * @param cause 51: */ 52: public PatternGiverReaderCommunicationException(String message, Throwable cause) { 53: super(message, cause); 54: } 55: 56: /** 57: * @param cause 58: */ 59: public PatternGiverReaderCommunicationException(Throwable cause) { 60: super(cause); 61: } 62: 63: }
Jannis (0.1preAlpha) |
© 2005 by Stefan Thesing;
Verbatim copying and redistribution of this entire page are permitted provided this notice is preserved.