KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > SOFA > SOFAnode > Util > DFSRChecker > DFSR > ItemAlreadyPresentException


1 /*
2  * $Id: ItemAlreadyPresentException.java,v 1.4 2005/07/08 12:04:11 kofron Exp $
3  *
4  * Copyright 2004
5  * Distributed Systems Research Group
6  * Department of Software Engineering
7  * Faculty of Mathematics and Physics
8  * Charles University, Prague
9  *
10  * Copyright 2005
11  * Formal Methods In Software Engineering Group
12  * Institute of Computer Science
13  * Academy of Sciences of the Czech Republic
14  *
15  * This code was developed by Jan Kofron <kofron@nenya.ms.mff.cuni.cz>
16  */

17
18 package SOFA.SOFAnode.Util.DFSRChecker.DFSR;
19
20 /**
21  * Exception to be thrown if an attempt to insert an already inserted item to
22  * the ActionRepository occurs.
23  */

24 public class ItemAlreadyPresentException extends Exception JavaDoc {
25
26     /** Creates a new instance of ItemAlreadyPresentException */
27     public ItemAlreadyPresentException() {
28     }
29
30 }
Popular Tags