KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > media > util > registry > ObjectAlreadyBoundException


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7
8 package org.jboss.media.util.registry;
9
10 /**
11  * This exception is thrown if an object is already bound to the registry.
12  *
13  * @version <tt>$Revision: 1.1 $</tt>
14  * @author <a HREF="mailto:ricardoarguello@users.sourceforge.net">Ricardo Argüello</a>
15  */

16 public class ObjectAlreadyBoundException extends Exception JavaDoc
17 {
18    public ObjectAlreadyBoundException()
19    {
20       super();
21    }
22
23    public ObjectAlreadyBoundException(String JavaDoc message)
24    {
25       super(message);
26    }
27 }
28
Popular Tags