01: /*
02: * Copyright (c) 1998 - 2005 Versant Corporation
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: * Versant Corporation - initial API and implementation
10: */
11: package com.versant.core.common;
12:
13: import javax.jdo.JDOFatalInternalException;
14:
15: /**
16: * Thrown when an unimplemented code path is followed.
17: */
18: public class NotImplementedException extends JDOFatalInternalException {
19:
20: public NotImplementedException() {
21: }
22:
23: public NotImplementedException(String msg) {
24: super (msg);
25: }
26:
27: public NotImplementedException(String msg, Throwable[] nested) {
28: super (msg, nested);
29: }
30:
31: public NotImplementedException(String msg, Throwable nested) {
32: super(msg, nested);
33: }
34: }
|