kiwi.util
Class NotImplementedException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--kiwi.util.NotImplementedException
All Implemented Interfaces:
java.io.Serializable

public class NotImplementedException
extends java.lang.RuntimeException

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

Author:
Mark Lindner, PING Software Group
See Also:
Serialized Form

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

Constructor Detail

NotImplementedException

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