|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
NotImplementedException.java | - | 0% | 0% | 0% |
|
1 |
/* Copyright (c) 2000-2003, jMock.org. See bundled LICENSE.txt */
|
|
2 |
package org.jmock.expectation;
|
|
3 |
|
|
4 |
import junit.framework.AssertionFailedError;
|
|
5 |
|
|
6 |
public class NotImplementedException extends AssertionFailedError { |
|
7 |
|
|
8 |
/**
|
|
9 |
* NotImplementedException constructor comment.
|
|
10 |
*/
|
|
11 | 0 |
public NotImplementedException() {
|
12 | 0 |
super();
|
13 |
} |
|
14 |
|
|
15 |
/**
|
|
16 |
* NotImplementedException constructor comment.
|
|
17 |
*
|
|
18 |
* @param message java.lang.String
|
|
19 |
*/
|
|
20 | 0 |
public NotImplementedException(String message) {
|
21 | 0 |
super(message);
|
22 |
} |
|
23 |
} |
|
24 |
|
|