blob: 3a0b985c131764978f72d2aba68e79da2072c9ec [file] [log] [blame]
david_williamscfdb2cd2004-11-11 08:37:49 +00001/*******************************************************************************
2 * Copyright (c) 2001, 2004 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * IBM Corporation - initial API and implementation
10 * Jens Lukowski/Innoopract - initial renaming/restructuring
11 *
12 *******************************************************************************/
13package org.eclipse.wst.sse.core.internal;
14
15
16public class NotImplementedException extends RuntimeException {
david_williams895f8882004-11-12 06:59:26 +000017 /**
18 * Comment for <code>serialVersionUID</code>
19 */
20 private static final long serialVersionUID = 1L;
21
david_williamscfdb2cd2004-11-11 08:37:49 +000022 public NotImplementedException() {
23 super();
24 }
25
26 public NotImplementedException(String message) {
27 super(message);
28 }
29
30 public NotImplementedException(String message, Throwable cause) {
31 super(message, cause);
32 }
33
34 public NotImplementedException(Throwable cause) {
35 super(cause);
36 }
37}