|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
JFCTestException.java | - | 0% | 0% | 0% |
|
1 |
package junit.extensions.jfcunit;
|
|
2 |
|
|
3 |
|
|
4 |
/**
|
|
5 |
* Exception to indicate problems relating to jfcUnit.
|
|
6 |
*
|
|
7 |
* @author Matt Caswell
|
|
8 |
*/
|
|
9 |
public class JFCTestException extends Exception { |
|
10 |
/**
|
|
11 |
* Construct a new JFCTestException with a given message.
|
|
12 |
* @param mesg The message for this exception
|
|
13 |
*/
|
|
14 | 0 |
public JFCTestException(final String mesg) {
|
15 | 0 |
super(mesg);
|
16 |
} |
|
17 |
} |
|
18 |
|
|