|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
BuddyNotInitException.java | - | 50% | 33.3% | 40% |
|
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 | 0 | public BuddyNotInitException() |
17 | { | |
18 | } | |
19 | ||
20 | 4 | public BuddyNotInitException(String msg) |
21 | { | |
22 | 4 | super(msg); |
23 | } | |
24 | ||
25 | 0 | public BuddyNotInitException(String msg, Throwable cause) |
26 | { | |
27 | 0 | super(msg, cause); |
28 | } | |
29 | } |
|