|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| ReferenceOutOfScopeException.java | - | 33.3% | 33.3% | 33.3% |
|
||||||||||||||
| 1 | package com.agical.rmock.core.hub; | |
| 2 | ||
| 3 | import com.agical.rmock.core.exception.RMockSystemException; | |
| 4 | ||
| 5 | /** | |
| 6 | * @author brolund | |
| 7 | * | |
| 8 | * (c) 2005 Agical AB | |
| 9 | */ | |
| 10 | public class ReferenceOutOfScopeException extends RMockSystemException { | |
| 11 | ||
| 12 | 2 | public ReferenceOutOfScopeException(String s) { |
| 13 | 2 | super(s); |
| 14 | } | |
| 15 | ||
| 16 | 0 | public ReferenceOutOfScopeException(String msg, Throwable cause) { |
| 17 | 0 | super(msg, cause); |
| 18 | } | |
| 19 | ||
| 20 | 0 | public ReferenceOutOfScopeException(Throwable cause) { |
| 21 | 0 | super(cause); |
| 22 | } | |
| 23 | ||
| 24 | } |
|
||||||||||