KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sleepycat > je > utilint > NotImplementedYetException


1 /*-
2  * See the file LICENSE for redistribution information.
3  *
4  * Copyright (c) 2002,2006 Oracle. All rights reserved.
5  *
6  * $Id: NotImplementedYetException.java,v 1.16 2006/10/30 21:14:29 bostic Exp $
7  */

8
9 package com.sleepycat.je.utilint;
10
11 /**
12  * Something is not yet implemented.
13  */

14 public class NotImplementedYetException extends RuntimeException JavaDoc {
15
16     public NotImplementedYetException() {
17     super();
18     }
19
20     public NotImplementedYetException(String JavaDoc message) {
21     super(message);
22     }
23 }
24
Popular Tags