| ObjectNotBoundException.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 not bound to the registry.
*
* @version <tt>$Revision: 1.1 $</tt>
* @author <a href="mailto:ricardoarguello@users.sourceforge.net">Ricardo Argüello</a>
*/
public class ObjectNotBoundException extends Exception
{
public ObjectNotBoundException()
{
super();
}
public ObjectNotBoundException(String message)
{
super(message);
}
}
| ObjectNotBoundException.java |