java notimplementedexception

Solutions on MaxInterview for java notimplementedexception by the best coders in the world

showing results for - "java notimplementedexception"
Isabell
06 Jul 2019
1public class NotYetImplementedException extends RuntimeException {
2    /**
3     * @deprecated Deprecated to remind you to implement the corresponding code
4     *             before releasing the software.
5     */
6    @Deprecated
7    public NotYetImplementedException() {
8    }
9
10    /**
11     * @deprecated Deprecated to remind you to implement the corresponding code
12     *             before releasing the software.
13     */
14    @Deprecated
15    public NotYetImplementedException(String message) {
16        super(message);
17    }
18}