KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > cache > marshall > RegionNameConflictException


1 package org.jboss.cache.marshall;
2
3 /**
4  * MarshRegion name conflicts with pre-existing regions. The conflict may come from there is already an
5  * parent region defined.
6  *
7  * @author Ben Wang 8-2005
8  */

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