Quadcap Embeddable Server

com/quadcap/util/ListException.java

Go to the documentation of this file.
00001 /* Copyright 1997 - 2003 Quadcap Software. All rights reserved. 00002 * 00003 * This software is distributed under the Quadcap Free Software License. 00004 * This software may be used or modified for any purpose, personal or 00005 * commercial. Open Source redistributions are permitted. Commercial 00006 * redistribution of larger works derived from, or works which bundle 00007 * this software requires a "Commercial Redistribution License"; see 00008 * http://www.quadcap.com/purchase. 00009 * 00010 * Redistributions qualify as "Open Source" under one of the following terms: 00011 * 00012 * Redistributions are made at no charge beyond the reasonable cost of 00013 * materials and delivery. 00014 * 00015 * Redistributions are accompanied by a copy of the Source Code or by an 00016 * irrevocable offer to provide a copy of the Source Code for up to three 00017 * years at the cost of materials and delivery. Such redistributions 00018 * must allow further use, modification, and redistribution of the Source 00019 * Code under substantially the same terms as this license. 00020 * 00021 * Redistributions of source code must retain the copyright notices as they 00022 * appear in each source code file, these license terms, and the 00023 * disclaimer/limitation of liability set forth as paragraph 6 below. 00024 * 00025 * Redistributions in binary form must reproduce this Copyright Notice, 00026 * these license terms, and the disclaimer/limitation of liability set 00027 * forth as paragraph 6 below, in the documentation and/or other materials 00028 * provided with the distribution. 00029 * 00030 * The Software is provided on an "AS IS" basis. No warranty is 00031 * provided that the Software is free of defects, or fit for a 00032 * particular purpose. 00033 * 00034 * Limitation of Liability. Quadcap Software shall not be liable 00035 * for any damages suffered by the Licensee or any third party resulting 00036 * from use of the Software. 00037 */ 00038 00039 package com.quadcap.util; 00040 00041 /** 00042 * 00043 * 00044 * @author Stan Bailes 00045 */ 00046 public class ListException extends RuntimeException { 00047 public ListException(String msg) { 00048 super(msg); 00049 } 00050 }