|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| RDocSystemException.java | - | 0% | 0% | 0% |
|
||||||||||||||
| 1 | package com.agical.rdoc.core.exception; | |
| 2 | ||
| 3 | import com.agical.rmock.core.exception.RMockSystemException; | |
| 4 | ||
| 5 | /** | |
| 6 | * @author brolund | |
| 7 | * | |
| 8 | * (c) 2005 Agical AB | |
| 9 | */ | |
| 10 | public class RDocSystemException extends RMockSystemException { | |
| 11 | private static final long serialVersionUID = 1L; | |
| 12 | ||
| 13 | 0 | public RDocSystemException(String message, Throwable cause) { |
| 14 | 0 | super(message, cause); |
| 15 | } | |
| 16 | ||
| 17 | 0 | public RDocSystemException(String message) { |
| 18 | 0 | super(message); |
| 19 | } | |
| 20 | ||
| 21 | ||
| 22 | ||
| 23 | } |
|
||||||||||