|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
SuspectException.java | - | 50% | 50% | 50% |
|
1 | package org.jboss.cache; | |
2 | ||
3 | /** | |
4 | * Thrown when a member is suspected during remote method invocation | |
5 | * @author Bela Ban | |
6 | * @version $Id: SuspectException.java,v 1.2 2006/12/11 21:14:34 genman Exp $ | |
7 | */ | |
8 | public class SuspectException extends CacheException | |
9 | { | |
10 | ||
11 | private static final long serialVersionUID = -2965599037371850141L; | |
12 | ||
13 | 0 | public SuspectException() { |
14 | 0 | super(); |
15 | } | |
16 | ||
17 | 3 | public SuspectException(String msg) { |
18 | 3 | super(msg); |
19 | } | |
20 | ||
21 | 0 | public SuspectException(String msg, Throwable cause) { |
22 | 0 | super(msg, cause); |
23 | } | |
24 | ||
25 | 3 | public String toString() { |
26 | 3 | return super.toString(); |
27 | } | |
28 | } |
|