Jannis (0.1preAlpha) | ||
Frames | No Frames |
1: /* NNMLException.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: * NNMLException is used to handle errors while converting Jannis objects to 20: * NNML and vice versa. 21: * 22: * @author Stefan Thesing<br> 23: * Website: <a href="http://www.webdings.de">http://www.webdings.de</a> 24: * @version 0.1 10.08.2005 25: */ 26: public class NNMLException extends Exception { 27: 28: /** 29: * 30: */ 31: private static final long serialVersionUID = -7431000358170473443L; 32: 33: /** 34: * 35: */ 36: public NNMLException() { 37: super(); 38: } 39: 40: /** 41: * @param arg0 42: */ 43: public NNMLException(String arg0) { 44: super(arg0); 45: } 46: 47: /** 48: * @param arg0 49: * @param arg1 50: */ 51: public NNMLException(String arg0, Throwable arg1) { 52: super(arg0, arg1); 53: } 54: 55: /** 56: * @param arg0 57: */ 58: public NNMLException(Throwable arg0) { 59: super(arg0); 60: } 61: 62: }
Jannis (0.1preAlpha) |
© 2005 by Stefan Thesing;
Verbatim copying and redistribution of this entire page are permitted provided this notice is preserved.