|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| NoSuchResourceException.java | - | 0% | 0% | 0% |
|
||||||||||||||
| 1 | package com.agical.rdoc.core.resourcemanager; | |
| 2 | ||
| 3 | import com.agical.rdoc.core.exception.RDocSystemException; | |
| 4 | ||
| 5 | /** | |
| 6 | * @author brolund | |
| 7 | * | |
| 8 | * (c) 2005 Agical AB | |
| 9 | */ | |
| 10 | public class NoSuchResourceException extends RDocSystemException { | |
| 11 | private static final long serialVersionUID = 1L; | |
| 12 | ||
| 13 | 0 | public NoSuchResourceException(String resourceName, Throwable cause ) { |
| 14 | 0 | super( "Could not find resource" + resourceName, cause ); |
| 15 | } | |
| 16 | ||
| 17 | } |
|
||||||||||