|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
JMSInjectionException.java | - | 0% | 0% | 0% |
|
1 | /** | |
2 | * JTRunner is free software; you can redistribute it and/or modify it under the | |
3 | * terms of the GNU General Public License as published by the Free Software | |
4 | * Foundation; either version 2, or (at your option) any later version. | |
5 | */ | |
6 | ||
7 | package jtr.jms; | |
8 | ||
9 | /** | |
10 | * This exception is thrown whenever something goes wrong during the injection | |
11 | * of JMS related objects into a concrete <code>IRunner</code> implementation. | |
12 | * | |
13 | * @author Francesco Russo (frusso@dev.java.net) | |
14 | * @version 4.0 | |
15 | * @since 1.1 | |
16 | */ | |
17 | public class JMSInjectionException extends Exception { | |
18 | /** | |
19 | * | |
20 | */ | |
21 | private static final long serialVersionUID = 3258229618086127064L; | |
22 | ||
23 | /** | |
24 | * Parameterized constructor | |
25 | * | |
26 | * @param msg | |
27 | * The message | |
28 | * @param root | |
29 | * The root cause | |
30 | */ | |
31 | 0 | public JMSInjectionException(String msg, Throwable root) { |
32 | 0 | super(msg, root); |
33 | } | |
34 | ||
35 | /** | |
36 | * Constructor with error message | |
37 | * | |
38 | * @param msg | |
39 | * The message | |
40 | */ | |
41 | 0 | public JMSInjectionException(String msg) { |
42 | 0 | super(msg); |
43 | } | |
44 | } |
|