KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > cache > NodeNotExistsException


1 // $Id: NodeNotExistsException.java,v 1.2 2006/12/11 21:14:34 genman Exp $
2

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

9
10 package org.jboss.cache;
11
12
13
14
15 /**
16  * Thrown when an operation is attempted on a non-existing node in the cache
17  *
18  * @author <a HREF="mailto:bela@jboss.com">Bela Ban</a>.
19  * @version $Id: NodeNotExistsException.java,v 1.2 2006/12/11 21:14:34 genman Exp $
20  */

21
22 public class NodeNotExistsException extends CacheException {
23
24    private static final long serialVersionUID = 779376138690777440L;
25
26    public NodeNotExistsException() {
27       super();
28    }
29
30
31    public NodeNotExistsException(String JavaDoc msg) {
32       super(msg);
33    }
34
35
36    public NodeNotExistsException(String JavaDoc msg, Throwable JavaDoc cause) {
37       super(msg, cause);
38    }
39
40
41
42 }
43
Popular Tags