|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| RMockInternalError.java | - | 50% | 50% | 50% |
|
||||||||||||||
| 1 | package com.agical.rmock.core.exception; | |
| 2 | ||
| 3 | ||
| 4 | public class RMockInternalError extends RMockSystemException { | |
| 5 | private static final long serialVersionUID = 1L; | |
| 6 | ||
| 7 | 1 | public RMockInternalError(String message) { |
| 8 | 1 | super(message); |
| 9 | } | |
| 10 | ||
| 11 | 0 | public RMockInternalError(String message, Throwable throwable) { |
| 12 | 0 | super(message, throwable); |
| 13 | } | |
| 14 | } |
|
||||||||||