Class NotYetImplementedException

  • All Implemented Interfaces:
    Serializable

    public class NotYetImplementedException
    extends CodeInconsistencyException
    Thrown to indicate that a method was not yet implemented by the developer. This is intended to be temporary and will cause a deprecation warning during compilation. Thus, if there are no concrete plans to implement the method soon, you should use the JDK UnsupportedOperationException instead (e.g. as with unmodifiable lists).
    See Also:
    Serialized Form
    • Constructor Detail

      • NotYetImplementedException

        @Deprecated(since="0.1")
        public NotYetImplementedException()
        Deprecated.
        Deprecated to remind you to implement the corresponding code before releasing the software.
      • NotYetImplementedException

        @Deprecated(since="0.1")
        public NotYetImplementedException​(String message)
        Deprecated.
        Deprecated to remind you to implement the corresponding code before releasing the software.