KickJava   Java API By Example, From Geeks To Geeks.

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


1 // $Id: ReplicationException.java,v 1.5 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  * Thrown when a replication problem occurred
14  */

15 public class ReplicationException extends CacheException
16 {
17
18    private static final long serialVersionUID = 33172388691879866L;
19
20    public ReplicationException()
21    {
22       super();
23    }
24
25    public ReplicationException(Throwable JavaDoc cause)
26    {
27       super(cause);
28    }
29
30    public ReplicationException(String JavaDoc msg)
31    {
32       super(msg);
33    }
34
35    public ReplicationException(String JavaDoc msg, Throwable JavaDoc cause)
36    {
37       super(msg, cause);
38    }
39
40    public String JavaDoc toString()
41    {
42       return super.toString();
43    }
44 }
45
Popular Tags