|
1 |
| |
|
2 |
| |
|
3 |
| |
|
4 |
| package com.agical.rmock.core.exception; |
|
5 |
| |
|
6 |
| import com.agical.rmock.core.Section; |
|
7 |
| import com.agical.rmock.core.expectation.EngineException; |
|
8 |
| |
|
9 |
| |
|
10 |
| |
|
11 |
| |
|
12 |
| |
|
13 |
| |
|
14 |
| |
|
15 |
| |
|
16 |
| |
|
17 |
| |
|
18 |
| public abstract class RMockExpectationException extends EngineException { |
|
19 |
| |
|
20 |
| |
|
21 |
| |
|
22 |
| |
|
23 |
| private static final long serialVersionUID = 1L; |
|
24 |
| |
|
25 |
| |
|
26 |
| |
|
27 |
| |
|
28 |
| |
|
29 |
6
| public RMockExpectationException(Section root, boolean isRecording, String message) {
|
|
30 |
6
| super(root, isRecording, message);
|
|
31 |
| } |
|
32 |
| |
|
33 |
| |
|
34 |
| |
|
35 |
| |
|
36 |
0
| public RMockExpectationException(Section root, boolean isRecording, String message, Throwable cause) {
|
|
37 |
0
| super(root, isRecording, message, cause);
|
|
38 |
| } |
|
39 |
| } |