diff --git a/devkit-core/src/main/java/cn/org/codecrafters/devkit/core/exceptions/NotImplementedException.java b/devkit-core/src/main/java/cn/org/codecrafters/devkit/core/exceptions/NotImplementedException.java index dbf1b5a..095ae72 100644 --- a/devkit-core/src/main/java/cn/org/codecrafters/devkit/core/exceptions/NotImplementedException.java +++ b/devkit-core/src/main/java/cn/org/codecrafters/devkit/core/exceptions/NotImplementedException.java @@ -18,31 +18,23 @@ package cn.org.codecrafters.devkit.core.exceptions; /** - * NotImplementedException - Custom Runtime Exception - *
* The {@code NotImplementedException} class is a custom runtime exception * that represents a situation where a particular method or functionality is - * not implemented or is currently unavailable in the codebase. It extends the - * standard {@code RuntimeException} class, making it an unchecked exception. - * + * not implemented or is currently unavailable in the codebase. *
* This exception is typically thrown when developers need to indicate that a * specific part of the code is incomplete or requires further implementation. * It serves as a placeholder to highlight unfinished sections of the * application during development and testing phases. - * *
* Usage Example: - * *
* public void someMethod() {
* // Some code...
* throw new NotImplementedException("""
- * This feature will be implemented in a future release.
- * """);
+ * This feature will be implemented in a future release.""");
* }
*
- *
* Contact
*