| EMMA Coverage Report (generated Fri Jan 30 13:20:29 EST 2009) |
|---|
| [all classes][org.springframework.batch.core.step.skip] |
| name | class, % | method, % | block, % | line, % |
|---|---|---|---|---|
| NonSkippableException.java | 100% (1/1) | 100% (1/1) | 100% (5/5) | 100% (2/2) |
| name | class, % | method, % | block, % | line, % |
|---|---|---|---|---|
| class NonSkippableException | 100% (1/1) | 100% (1/1) | 100% (5/5) | 100% (2/2) |
| NonSkippableException (String, Throwable): void | 100% (1/1) | 100% (5/5) | 100% (2/2) |
| 1 | package org.springframework.batch.core.step.skip; |
| 2 | |
| 3 | import org.springframework.core.NestedRuntimeException; |
| 4 | |
| 5 | /** |
| 6 | * Wrapper type for exceptions that cannot be skipped. |
| 7 | * |
| 8 | * @author Robert Kasanicky |
| 9 | * |
| 10 | */ |
| 11 | public class NonSkippableException extends NestedRuntimeException { |
| 12 | |
| 13 | public NonSkippableException(String msg, Throwable cause) { |
| 14 | super(msg, cause); |
| 15 | } |
| 16 | |
| 17 | } |
| [all classes][org.springframework.batch.core.step.skip] |
| EMMA 2.0.5312 (C) Vladimir Roubtsov |