Class NotYetImplementedException

  • All Implemented Interfaces:
    java.io.Serializable

    public class NotYetImplementedException
    extends java.lang.RuntimeException

    NotYetImplementedException is used during development of a class. It is expected that this Exception should not exist in final released classes.

    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      NotYetImplementedException()
      Constructs a NotYetImplementedException with no detail message.
      NotYetImplementedException​(java.lang.String message)
      Constructs a NotYetImplementedException with the specified detail message.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, 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

      • NotYetImplementedException

        public NotYetImplementedException()

        Constructs a NotYetImplementedException with no detail message.

      • NotYetImplementedException

        public NotYetImplementedException​(java.lang.String message)

        Constructs a NotYetImplementedException with the specified detail message.

        Parameters:
        message - The message.