1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 package de.bea.domingo.threadpool;
24
25 import de.bea.domingo.DNotesException;
26
27 /***
28 * Exceptions that can occur within a thread pool.
29 *
30 * @author <a href=mailto:kriede@users.sourceforge.net>Kurt Riede</a>
31 */
32 public class ThreadPoolException extends DNotesException {
33
34 /*** serial version ID for serialization. */
35 private static final long serialVersionUID = 3833185839327883316L;
36
37 /***
38 * Construct a new <code>ThreadPoolException</code> instance.
39 *
40 * @param message The detail message for this exception.
41 */
42 public ThreadPoolException(final String message) {
43 super(message);
44 }
45
46 /***
47 * Construct a new <code>ThreadPoolException</code> instance.
48 *
49 * @param throwable the root cause of the exception
50 */
51 public ThreadPoolException(final Throwable throwable) {
52 super(throwable);
53 }
54
55 /***
56 * Construct a new <code>ThreadPoolException</code> instance.
57 *
58 * @param message The detail message for this exception.
59 * @param throwable the root cause of the exception
60 */
61 public ThreadPoolException(final String message, final Throwable throwable) {
62 super(message, throwable);
63 }
64 }