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