1 /* 2 * File: RuntimeWebmancerException.java 3 * Created: 8.4.2007 13:18:28 4 * 5 * Copyright 2007 Michal Burda. 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation; either version 2 of the License, or 10 * (at your option) any later version. 11 * 12 * This program is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with this program; if not, write to the Free Software 19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 20 */ 21 22 package net.sf.webmancer.base; 23 24 /** 25 * @author Michal Burda 26 * 27 */ 28 public class RuntimeWebmancerException extends RuntimeException { 29 30 /** 31 * 32 */ 33 private static final long serialVersionUID = 8133674421073212186L; 34 35 /** 36 * 37 */ 38 public RuntimeWebmancerException() { 39 } 40 41 /** 42 * @param arg0 43 */ 44 public RuntimeWebmancerException(final String arg0) { 45 super(arg0); 46 } 47 48 /** 49 * @param arg0 50 */ 51 public RuntimeWebmancerException(final Throwable arg0) { 52 super(arg0); 53 } 54 55 /** 56 * @param arg0 57 * @param arg1 58 */ 59 public RuntimeWebmancerException(final String arg0, final Throwable arg1) { 60 super(arg0, arg1); 61 } 62 63 }