EMMA Coverage Report (generated Fri Jan 30 13:20:29 EST 2009)
[all classes][org.springframework.batch.item]

COVERAGE SUMMARY FOR SOURCE FILE [NoWorkFoundException.java]

nameclass, %method, %block, %line, %
NoWorkFoundException.java0%   (0/1)0%   (0/2)0%   (0/9)0%   (0/4)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class NoWorkFoundException0%   (0/1)0%   (0/2)0%   (0/9)0%   (0/4)
NoWorkFoundException (String): void 0%   (0/1)0%   (0/4)0%   (0/2)
NoWorkFoundException (String, Throwable): void 0%   (0/1)0%   (0/5)0%   (0/2)

1/*
2 * Copyright 2006-2008 the original author or authors.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.springframework.batch.item;
17 
18/**
19 * Exception indicating no work was found - e.g. the input is empty or
20 * more generally no items were processed.
21 * 
22 * @author Lucas Ward
23 * @author Ben Hale
24 */
25public class NoWorkFoundException extends ItemReaderException {
26 
27        /**
28         * Create a new {@link NoWorkFoundException} based on a message.
29         * 
30         * @param message the message for this exception
31         */
32        public NoWorkFoundException(String message) {
33                super(message);
34        }
35 
36        /**
37         * Create a new {@link NoWorkFoundException} based on a message and another exception.
38         * 
39         * @param msg the message for this exception
40         * @param nested the other exception
41         */
42        public NoWorkFoundException(String msg, Throwable nested) {
43                super(msg, nested);
44        }
45}

[all classes][org.springframework.batch.item]
EMMA 2.0.5312 (C) Vladimir Roubtsov