Update of /cvsroot/csms/csms-core/src/java/org/fanfoot/db
In directory sc8-pr-cvs1:/tmp/cvs-serv17931
Added Files:
UnknownPlayerException.java
Log Message:
Add basic support for XML:DB databases
--- NEW FILE: UnknownPlayerException.java ---
/*
* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is Community Sports Management System.
*
* The Initial Developer of the Original Code is
* We know What you Want.net
*
* Portions created by the Initial Developer are Copyright (C) 2002
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* Ross Gardler <ross [at] saafe.org>
* Mike Lever <mikel [at] fanfoot.com>
* Stuart Gardler <stuart [at] wkwyw.net>
*
* ***** END LICENSE BLOCK *****
*/
/*
* UnknownPlayerException.java
*
*/
package org.fanfoot.db;
/**
* Thrown when there is an attempt to manipulate a player that does
* not exist in the databae.
*@author rgardler
*/
public class UnknownPlayerException extends java.lang.Exception {
/**
* Creates a new instance of <code>UnknownPlayerException</code> without
* detail message.
*/
public UnknownPlayerException() { }
/**
* Constructs an instance of <code>UnknownPlayerException</code> with the
* specified detail message.
*
*@param msg the detail message.
*/
public UnknownPlayerException( String msg ) {
super( msg );
}
}
|