NodeNotExistsException.java |
// $Id: NodeNotExistsException.java,v 1.1 2004/11/05 13:36:52 belaban Exp $ /* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.cache; import java.util.Map; /** * Thrown when an operation is attempted on a non-existing node in the cache * * @author <a href="mailto:bela@jboss.com">Bela Ban</a>. * @version $Id: NodeNotExistsException.java,v 1.1 2004/11/05 13:36:52 belaban Exp $ */ public class NodeNotExistsException extends CacheException { public NodeNotExistsException() { super(); } public NodeNotExistsException(String msg) { super(msg); } public NodeNotExistsException(String msg, Throwable cause) { super(msg, cause); } }
NodeNotExistsException.java |