1 /*2 * JBoss, the OpenSource J2EE webOS3 *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 17 {18 public ObjectAlreadyBoundException()19 {20 super();21 }22 23 public ObjectAlreadyBoundException(String message)24 {25 super(message);26 }27 }28