KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > cache > buddyreplication > BuddyNotInitException


1 package org.jboss.cache.buddyreplication;
2
3 import org.jboss.cache.CacheException;
4
5 /**
6  * Exception to depict that a buddy has not been initialised to participate in any comms
7  *
8  * @author <a HREF="mailto:manik@jboss.org">Manik Surtani</a>
9  * @since 1.4.1
10  */

11 public class BuddyNotInitException extends CacheException
12 {
13
14    private static final long serialVersionUID = 8968506912780922157L;
15
16    public BuddyNotInitException()
17    {
18    }
19
20    public BuddyNotInitException(String JavaDoc msg)
21    {
22       super(msg);
23    }
24
25    public BuddyNotInitException(String JavaDoc msg, Throwable JavaDoc cause)
26    {
27       super(msg, cause);
28    }
29 }
30
Popular Tags