/*
* 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: InvalidIdException.java,v 1.2 2006/09/29 12:32:07 drmlipp Exp $
*
* $Log: InvalidIdException.java,v $
* Revision 1.2 2006/09/29 12:32:07 drmlipp
* Consistently using WfMOpen as projct name now.
*
* Revision 1.1.1.1 2003/06/30 20:05:13 drmlipp
* Initial import
*
* Revision 1.2 2003/06/27 08:51:46 lipp
* Fixed copyright/license information.
*
* Revision 1.1 2002/09/17 15:24:24 lipp
* Renamed Tool to Application and copied some functionality to
* ProcessDefintion.
*
*/
package de.danet.an.workflow.api;
import java.io.Serializable;
/**
* This exception is raised if an invalid id is passed to a lookup
* method.
*
* @author <a href="mailto:lipp@danet.de"></a>
* @version $Revision: 1.2 $
*/
public class InvalidIdException extends Exception implements Serializable {
/**
* Constructs a new exception with the given message. The message
* should at least include the invalid id.
* @param msg the message
*/
public InvalidIdException (String msg) {
super (msg);
}
}
|