|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| ClassNotFoundSystemException.java | - | 100% | 100% | 100% |
|
||||||||||||||
| 1 | package com.agical.rmock.core.exception.reflection; | |
| 2 | ||
| 3 | import com.agical.rmock.core.exception.RMockSystemException; | |
| 4 | ||
| 5 | public class ClassNotFoundSystemException extends RMockSystemException { | |
| 6 | ||
| 7 | /** | |
| 8 | * | |
| 9 | */ | |
| 10 | private static final long serialVersionUID = 1L; | |
| 11 | ||
| 12 | 1 | public ClassNotFoundSystemException(String name) { |
| 13 | 1 | super ("Could not find the class: "+name); |
| 14 | } | |
| 15 | ||
| 16 | } |
|
||||||||||