| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| CancelledExecutionException |
|
| 1.0;1 |
| 1 | package com.aragost.javahg.commands; | |
| 2 | ||
| 3 | import com.aragost.javahg.internals.AbstractCommand; | |
| 4 | ||
| 5 | public class CancelledExecutionException extends ExecutionException { | |
| 6 | ||
| 7 | private static final long serialVersionUID = 1L; | |
| 8 | ||
| 9 | public CancelledExecutionException(AbstractCommand command) { | |
| 10 | 4 | super(command, "Command cancelled"); |
| 11 | 4 | } |
| 12 | } |