View Javadoc
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 public NotImplementedException() { 12 super(); 13 } 14 15 /*** 16 * NotImplementedException constructor comment. 17 * 18 * @param message java.lang.String 19 */ 20 public NotImplementedException(String message) { 21 super(message); 22 } 23 }

This page was automatically generated by Maven