01: /*******************************************************************************
02: * Copyright (c) 2000, 2005 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.debug.jdi.tests;
11:
12: /**
13: * Specialized exception class for testing
14: */
15: public class NotYetImplementedException extends RuntimeException {
16: private static final long serialVersionUID = 1L;
17:
18: /**
19: * NotYetImplemented constructor comment.
20: */
21: public NotYetImplementedException() {
22: super ();
23: }
24:
25: /**
26: * NotYetImplemented constructor comment.
27: * @param s java.lang.String
28: */
29: public NotYetImplementedException(String s) {
30: super(s);
31: }
32: }
|