|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| SourceNotFoundSystemException.java | - | 0% | 0% | 0% |
|
||||||||||||||
| 1 | package com.agical.rdoc.core.exception; | |
| 2 | ||
| 3 | public class SourceNotFoundSystemException extends ResourceSystemException { | |
| 4 | ||
| 5 | /** | |
| 6 | * | |
| 7 | */ | |
| 8 | private static final long serialVersionUID = 1L; | |
| 9 | ||
| 10 | 0 | public SourceNotFoundSystemException(String arg0, Throwable arg1) { |
| 11 | 0 | super(arg0, arg1); |
| 12 | } | |
| 13 | ||
| 14 | 0 | public SourceNotFoundSystemException(String arg0) { |
| 15 | 0 | super(arg0); |
| 16 | } | |
| 17 | ||
| 18 | 0 | public SourceNotFoundSystemException(Throwable arg0) { |
| 19 | 0 | super(arg0); |
| 20 | } | |
| 21 | } |
|
||||||||||