- class CustomUncheckedException extends RuntimeException {
-
- CustomUncheckedException() {
- throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
- }
-
- CustomUncheckedException(String message) {
- throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
- }
-
- }
|