//
// This file is part of the prose package.
//
// 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 prose.
//
// The Initial Developer of the Original Code is Andrei Popovici. Portions
// created by Andrei Popovici are Copyright (C) 2002 Andrei Popovici.
// All Rights Reserved.
//
// Contributor(s):
// $Id: SystemStartupException.java,v 1.1.1.1 2003/07/02 15:30:51 apopovic Exp $
// =====================================================================
//
// (history at end)
//
package ch.ethz.prose;
/**
* Exception class SystemStartupException signals that XXX
*
* @version $Revision: 1.1.1.1 $
* @author Andrei Popovici
*/
public
class SystemStartupException extends Exception {
private static final long serialVersionUID = 3256720667385869367L;
/**
* Constructs an <code>SystemStartupException</code> with no detail message.
*/
public SystemStartupException()
{
super();
}
/**
* Constructs an <code>SystemStartupException</code> with the specified
* detail message.
*/
public SystemStartupException(String s)
{
super(s);
}
}
//======================================================================
//
// $Log: SystemStartupException.java,v $
// Revision 1.1.1.1 2003/07/02 15:30:51 apopovic
// Imported from ETH Zurich
//
// Revision 1.1 2003/05/05 13:58:34 popovici
// renaming from runes to prose
//
// Revision 1.2 2002/03/28 13:48:38 popovici
// Mozilla-ified
//
// Revision 1.1.1.1 2001/11/29 18:13:16 popovici
// Sources from runes
//
// Revision 1.1.2.1 2001/02/07 11:59:19 popovici
// Initial revision
//
|