KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > cache > lock > OwnerNotExistedException


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

7 package org.jboss.cache.lock;
8 /**
9  * @author Ben
10  */

11 public class OwnerNotExistedException extends Exception JavaDoc
12 {
13
14    private static final long serialVersionUID = 2837393571654438480L;
15
16    /**
17     *
18     */

19    public OwnerNotExistedException()
20    {
21       super();
22    }
23
24    /**
25     * @param message
26     */

27    public OwnerNotExistedException(String JavaDoc message)
28    {
29       super(message);
30    }
31
32    /**
33     * @param message
34     * @param cause
35     */

36    public OwnerNotExistedException(String JavaDoc message, Throwable JavaDoc cause)
37    {
38       super(message, cause);
39    }
40
41    /**
42     * @param cause
43     */

44    public OwnerNotExistedException(Throwable JavaDoc cause)
45    {
46       super(cause);
47    }
48
49 }
50
Popular Tags