1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.jdiagnose.remote;
17
18 import org.jdiagnose.exception.NestableException;
19
20 /***
21 * @author jmccrindle
22 */
23 public class RemoteResultException extends NestableException {
24
25 /***
26 *
27 */
28 public RemoteResultException() {
29 super();
30 }
31
32 /***
33 * @param msg
34 */
35 public RemoteResultException(String msg) {
36 super(msg);
37 }
38
39 /***
40 * @param msg
41 * @param cause
42 */
43 public RemoteResultException(String msg, Throwable cause) {
44 super(msg, cause);
45 }
46
47 /***
48 * @param cause
49 */
50 public RemoteResultException(Throwable cause) {
51 super(cause);
52 }
53 }