|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
RegionNameConflictException.java | - | 0% | 0% | 0% |
|
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 | |
10 | { | |
11 | ||
12 | private static final long serialVersionUID = -7719282503234213209L; | |
13 | ||
14 | 0 | public RegionNameConflictException() |
15 | { | |
16 | 0 | super(); |
17 | } | |
18 | ||
19 | 0 | public RegionNameConflictException(String msg) |
20 | { | |
21 | 0 | super(msg); |
22 | } | |
23 | ||
24 | 0 | public RegionNameConflictException(String msg, Throwable cause) |
25 | { | |
26 | 0 | super(msg, cause); |
27 | } | |
28 | } |
|