KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > mybatchfwk > TaskExecutionException


1 /*
2  * MyBatchFramework - Open-source batch framework.
3  * Copyright (C) 2006 Jérôme Bertèche cyberteche@users.sourceforge.net
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * Lesser General Public License for more details.
14  *
15  * Jérôme Bertèche
16  * Email: cyberteche@users.sourceforge.net
17  */

18 package net.sf.mybatchfwk;
19
20 /**
21  * Exception that can be used to throw an error during a task execution
22  * @author Jérôme Bertèche (cyberteche@users.sourceforge.net)
23  */

24 public class TaskExecutionException extends RuntimeException JavaDoc {
25
26     private static final long serialVersionUID = 5323624385858873253L;
27
28     public TaskExecutionException() {
29         super();
30     }
31
32     public TaskExecutionException(String JavaDoc message, Throwable JavaDoc cause) {
33         super(message, cause);
34     }
35
36     public TaskExecutionException(String JavaDoc message) {
37         super(message);
38     }
39
40     public TaskExecutionException(Throwable JavaDoc cause) {
41         super(cause);
42     }
43 }
44
Popular Tags