diff --git a/README.md b/README.md index e03f953..603bca4 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ A module for generating globally unique IDs. It includes a facade interface and _[Learn more](https://github.com/CodeCraftersCN/jdevkit/webcal/README.md)_ -The module `webcal` is a Java library that facilitates the generation and resolution of iCalendar content for web-based calendar applications. It provides a flexible and easy-to-use API for creating web calendars with customizable settings and events. +The module `webcal` is a Java library that facilitates the generation and resolution of iCalendar content for web-based calendar applications. It provides a flexible and easy-to-use API for creating web calendars with customisable settings and events. With the `webcal` module, developers can easily integrate calendar functionality into web applications, enabling users to view, add, and manage events in a structured and standardized format. It is designed to simplify calendar-related tasks and enhance the overall user experience when dealing with calendar data on the web. diff --git a/devkit-core/pom.xml b/devkit-core/pom.xml index aa09102..15f579a 100644 --- a/devkit-core/pom.xml +++ b/devkit-core/pom.xml @@ -23,7 +23,7 @@ cn.org.codecrafters jdevkit - 1.0.1 + 1.1.0 devkit-core 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 * * * @author Zihlu Wang - * @version 1.0.0 + * @version 1.1.0 * @see RuntimeException * @since 1.0.0 */ diff --git a/devkit-core/src/main/java/cn/org/codecrafters/devkit/core/exceptions/package-info.java b/devkit-core/src/main/java/cn/org/codecrafters/devkit/core/exceptions/package-info.java index 826c497..dfac4fe 100644 --- a/devkit-core/src/main/java/cn/org/codecrafters/devkit/core/exceptions/package-info.java +++ b/devkit-core/src/main/java/cn/org/codecrafters/devkit/core/exceptions/package-info.java @@ -16,7 +16,7 @@ */ /** - * Commonly used exceptions will be used in JDevKit. + * This package contains commonly used exceptions will be used in JDevKit. * * @author Zihlu Wang * @since 1.0.0 diff --git a/devkit-core/src/main/java/cn/org/codecrafters/devkit/core/package-info.java b/devkit-core/src/main/java/cn/org/codecrafters/devkit/core/package-info.java index 3dda72c..a7e930f 100644 --- a/devkit-core/src/main/java/cn/org/codecrafters/devkit/core/package-info.java +++ b/devkit-core/src/main/java/cn/org/codecrafters/devkit/core/package-info.java @@ -16,19 +16,16 @@ */ /** - * This package is a part of JDevKit, an open-source Java Development Kit that - * provides a set of convenient tools to streamline code development and - * enhance productivity. This package serves as the core package containing - * common exceptions that are used throughout the entireJDevKit project. - * + * This package is the core part of JDevKit, an open-source Java Development + * Kit that provides a set of convenient tools to streamline code development + * and enhance productivity. This package serves as the core package containing + * common exceptions that are used throughout the entire JDevKit project. *

* JDevKit is designed to be modular, and other specific feature modules within * the library may rely on these exceptions from the core package. - * *

* For more information and the latest version of JDevKit, please visit our * website codecrafters.org.cn. - * *

* Contact *