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