NotImplementedException code example

Example: java notimplementedexception

public class NotYetImplementedException extends RuntimeException {
    /**
     * @deprecated Deprecated to remind you to implement the corresponding code
     *             before releasing the software.
     */
    @Deprecated
    public NotYetImplementedException() {
    }

    /**
     * @deprecated Deprecated to remind you to implement the corresponding code
     *             before releasing the software.
     */
    @Deprecated
    public NotYetImplementedException(String message) {
        super(message);
    }
}

Tags:

Java Example