blob: 65cba621243b608f67d1936602c69e42a16a00ed [file] [log] [blame]
package org.eclipse.debug.jdi.tests;
/**********************************************************************
Copyright (c) 2000, 2002 IBM Corp. All rights reserved.
This file is made available under the terms of the Common Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/cpl-v10.html
**********************************************************************/
public class NotYetImplementedException extends RuntimeException {
/**
* NotYetImplemented constructor comment.
*/
public NotYetImplementedException() {
super();
}
/**
* NotYetImplemented constructor comment.
* @param s java.lang.String
*/
public NotYetImplementedException(String s) {
super(s);
}
}