|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| ResourceSystemException.java | - | 0% | 0% | 0% |
|
||||||||||||||
| 1 | package com.agical.rdoc.core.exception; | |
| 2 | ||
| 3 | import com.agical.rmock.core.exception.RMockSystemException; | |
| 4 | ||
| 5 | public abstract class ResourceSystemException extends RMockSystemException { | |
| 6 | ||
| 7 | 0 | public ResourceSystemException(String arg0, Throwable arg1) { |
| 8 | 0 | super(arg0, arg1); |
| 9 | } | |
| 10 | ||
| 11 | 0 | public ResourceSystemException(String arg0) { |
| 12 | 0 | super(arg0); |
| 13 | } | |
| 14 | ||
| 15 | 0 | public ResourceSystemException(Throwable arg0) { |
| 16 | 0 | super(arg0); |
| 17 | } | |
| 18 | ||
| 19 | } |
|
||||||||||