Answers for "notimplementederror java"

1

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);
    }
}
Posted by: Guest on February-20-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language