iglu.util
Class NotImplementedException

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

public class NotImplementedException
extends java.lang.RuntimeException

An exception that should be thrown by methods that haven't been fully implemented.

Version:
1.0
Author:
Ryan Scherle rscherle@acm.org
See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.lang.RuntimeException
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
NotImplementedException()
          Constructs an exception that indicates something isn't implemented.
NotImplementedException(java.lang.String s)
          Constructs an exception indicating something isn't implemented, and displaying s as part of its message when printed.
 
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()
Constructs an exception that indicates something isn't implemented.


NotImplementedException

public NotImplementedException(java.lang.String s)
Constructs an exception indicating something isn't implemented, and displaying s as part of its message when printed.