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}