|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| ReadException.java | - | 100% | 100% | 100% |
|
||||||||||||||
| 1 | package com.agical.rdoc.core.resourcemanager; | |
| 2 | ||
| 3 | import com.agical.rmock.core.exception.RMockSystemException; | |
| 4 | ||
| 5 | /** | |
| 6 | * @author brolund | |
| 7 | * | |
| 8 | * (c) 2005 Agical AB | |
| 9 | */ | |
| 10 | public class ReadException extends RMockSystemException { | |
| 11 | private static final long serialVersionUID = 1L; | |
| 12 | ||
| 13 | 1 | public ReadException(String string) { |
| 14 | 1 | super( string ); |
| 15 | } | |
| 16 | ||
| 17 | } |
|
||||||||||