1 /* Copyright (c) 2000-2004 jMock.org2 */3 package org.jmock.util;4 5 6 public class NotImplementedException extends RuntimeException 7 {8 9 /**10 * NotImplementedException constructor comment.11 */12 public NotImplementedException() {13 super();14 }15 16 /**17 * NotImplementedException constructor comment.18 *19 * @param message java.lang.String20 */21 public NotImplementedException( String message ) {22 super(message);23 }24 }25