|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
RegionNameConflictException.java | - | 0% | 0% | 0% |
|
1 | package org.jboss.cache.eviction; | |
2 | ||
3 | /** | |
4 | * MarshRegion name conflicts with pre-existing regions. | |
5 | * | |
6 | * @author Ben Wang 2-2004 | |
7 | */ | |
8 | public class RegionNameConflictException extends Exception | |
9 | { | |
10 | ||
11 | private static final long serialVersionUID = -6796150029431162837L; | |
12 | ||
13 | 0 | public RegionNameConflictException() |
14 | { | |
15 | 0 | super(); |
16 | } | |
17 | ||
18 | 0 | public RegionNameConflictException(String msg) |
19 | { | |
20 | 0 | super(msg); |
21 | } | |
22 | ||
23 | 0 | public RegionNameConflictException(String msg, Throwable cause) |
24 | { | |
25 | 0 | super(msg, cause); |
26 | } | |
27 | } |
|