kiwi.util
Class NotImplementedException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended bykiwi.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

Field Summary
 
Fields inherited from class java.lang.RuntimeException
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
NotImplementedException()
          Construct a new NotImplementedException.
NotImplementedException(java.lang.String message)
          Construct a new NotImplementedException with the specified message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NotImplementedException

public NotImplementedException()
Construct a new NotImplementedException.

Since:
Kiwi 1.3

NotImplementedException

public NotImplementedException(java.lang.String message)
Construct a new NotImplementedException with the specified message.

Parameters:
message - The exception message.