kiwi.util
Class NotImplementedException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--kiwi.util.NotImplementedException

public class NotImplementedException
extends RuntimeException

General-purpose "not implemented" exception. This exception can be used to "bookmark" unfinished sections of code.

Version:
1.0.1 (10/98)
Author:
Mark Lindner, PING Software Group
See Also:
Serialized Form

Constructor Summary
NotImplementedException(String message)
          Construct a new NotImplementedException.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NotImplementedException

public NotImplementedException(String message)
Construct a new NotImplementedException.
Parameters:
message - The exception message.