cz.cuni.jagrlib
Class NotImplementedException

java.lang.Object
  extended by java.lang.Throwable
      extended by cz.cuni.jagrlib.NotImplementedException
All Implemented Interfaces:
java.io.Serializable

public class NotImplementedException
extends java.lang.Throwable

This exception is thrown when some function/property is not implemented (yet).

Since:
0.11
See Also:
JaGrLibException, NotImplementedException.java, Serialized Form

Constructor Summary
NotImplementedException()
          Constructs an NotImplementedException with no detail message.
NotImplementedException(java.lang.String msg)
          Constructs an NotImplementedException with the specified detail message.
 
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

NotImplementedException

public NotImplementedException()
Constructs an NotImplementedException with no detail message.


NotImplementedException

public NotImplementedException(java.lang.String msg)
Constructs an NotImplementedException with the specified detail message. A detail message is a String that describes this particular exception.

Parameters:
msg - The detail message.