Class NotImplementedException

All Implemented Interfaces:
Serializable

public class NotImplementedException extends UnsupportedOperationException
A mimicry of .NET's NotImplementedException which is used for (usually) abstract methods that do not have an implementation, or code that is otherwise incomplete.
Author:
Microsoft (for the .NET implementation), Eti (for the Java implementation)
See Also:
  • Constructor Details

    • NotImplementedException

      public NotImplementedException()
      Create a new instance of this exception using the default message, "This method or operation is not implemented."
    • NotImplementedException

      public NotImplementedException(String message)
      Create a new instance of this exception, overriding the display message.
      Parameters:
      message - The message to use.