|
1 |
| package com.agical.rdoc.core.converter; |
|
2 |
| |
|
3 |
| import com.agical.rmock.core.exception.RMockSystemException; |
|
4 |
| |
|
5 |
| |
|
6 |
| |
|
7 |
| |
|
8 |
| |
|
9 |
| |
|
10 |
| public class ConversionException extends RMockSystemException { |
|
11 |
| private static final long serialVersionUID = 1L; |
|
12 |
| |
|
13 |
1
| public ConversionException(String string) {
|
|
14 |
1
| super( string );
|
|
15 |
| } |
|
16 |
| |
|
17 |
1
| public ConversionException(String message, Throwable cause) {
|
|
18 |
1
| super( message, cause );
|
|
19 |
| } |
|
20 |
| |
|
21 |
0
| public ConversionException(Throwable cause) {
|
|
22 |
0
| super( cause );
|
|
23 |
| } |
|
24 |
| |
|
25 |
| } |