/*
* This file is part of the WfMOpen project.
* Copyright (C) 2001-2003 Danet GmbH (www.danet.de), GS-AN.
* All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* $Id: ServiceUnavailableException.java,v 1.2 2006/09/29 12:32:11 drmlipp Exp $
*
* $Log: ServiceUnavailableException.java,v $
* Revision 1.2 2006/09/29 12:32:11 drmlipp
* Consistently using WfMOpen as projct name now.
*
* Revision 1.1.1.1 2003/06/30 20:05:12 drmlipp
* Initial import
*
* Revision 1.2 2003/06/27 08:51:46 lipp
* Fixed copyright/license information.
*
* Revision 1.1 2001/11/20 20:03:22 lipp
* New user prefs service, interface design.
*
*/
package de.danet.an.util.userprefs;
/**
* This exception is thrown by the
* {@link UserPrefsServiceFactory#newUserPrefsService
* <code>newUserPrefsService</code>} method of
* <code>UserPrefsServiceFactory</code>.
*/
public class ServiceUnavailableException extends Exception {
/**
* Creates a new exception.
*/
public ServiceUnavailableException () {
super();
}
/**
* Creates a new exception with the given message.
* @param msg the detail message.
*/
public ServiceUnavailableException (String msg) {
super(msg);
}
}
|