org.jawk
Class NotImplementedError

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Error
          extended by org.jawk.NotImplementedError
All Implemented Interfaces:
java.io.Serializable

public class NotImplementedError
extends java.lang.Error

A placeholder for blocks of code which are not implemented. If this is thrown, then it is the author's intention to complete the section at a later date.

See Also:
Serialized Form

Constructor Summary
NotImplementedError()
          Construct the error without a message string.
NotImplementedError(java.lang.String msg)
          Construct the error with a message string.
 
Method Summary
 
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

NotImplementedError

public NotImplementedError()
Construct the error without a message string.


NotImplementedError

public NotImplementedError(java.lang.String msg)
Construct the error with a message string.

Parameters:
msg - The message string.