ObjectAlreadyBoundException.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.media.util.registry; /** * This exception is thrown if an object is already bound to the registry. * * @version <tt>$Revision: 1.1 $</tt> * @author <a href="mailto:ricardoarguello@users.sourceforge.net">Ricardo Argüello</a> */ public class ObjectAlreadyBoundException extends Exception { public ObjectAlreadyBoundException() { super(); } public ObjectAlreadyBoundException(String message) { super(message); } }
ObjectAlreadyBoundException.java |