Skip to content

Commit ade73ae

Browse files
author
zihluwang
committed
style: reformatted javadocs
1 parent 2d3a074 commit ade73ae

File tree

1 file changed

+10
-15
lines changed

1 file changed

+10
-15
lines changed

devkit-core/src/main/java/com/onixbyte/devkit/core/exceptions/NotImplementedException.java

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,12 @@
1818
package com.onixbyte.devkit.core.exceptions;
1919

2020
/**
21-
* The {@code NotImplementedException} class is a custom runtime exception
22-
* that represents a situation where a particular method or functionality is
23-
* not implemented or is currently unavailable in the codebase.
21+
* The {@code NotImplementedException} class is a custom runtime exception that represents a situation where a
22+
* particular method or functionality is not implemented or is currently unavailable in the codebase.
2423
* <p>
25-
* This exception is typically thrown when developers need to indicate that a
26-
* specific part of the code is incomplete or requires further implementation.
27-
* It serves as a placeholder to highlight unfinished sections of the
28-
* application during development and testing phases.
24+
* This exception is typically thrown when developers need to indicate that a specific part of the code is incomplete
25+
* or requires further implementation. It serves as a placeholder to highlight unfinished sections of the application
26+
* during development and testing phases.
2927
* <p>
3028
* Usage Example:
3129
* <pre>
@@ -54,15 +52,13 @@
5452
public class NotImplementedException extends RuntimeException {
5553

5654
/**
57-
* Creates a new {@code NotImplementedException} with no specific error
58-
* message.
55+
* Creates a new {@code NotImplementedException} with no specific error message.
5956
*/
6057
public NotImplementedException() {
6158
}
6259

6360
/**
64-
* Creates a new {@code NotImplementedException} with the provided error
65-
* message.
61+
* Creates a new {@code NotImplementedException} with the provided error message.
6662
*
6763
* @param message the error message associated with this exception
6864
*/
@@ -71,8 +67,7 @@ public NotImplementedException(String message) {
7167
}
7268

7369
/**
74-
* Creates a new {@code NotImplementedException} with the specified error
75-
* message and a cause for this exception.
70+
* Creates a new {@code NotImplementedException} with the specified error message and a cause for this exception.
7671
*
7772
* @param message the error message associated with this exception
7873
* @param cause the cause of this exception
@@ -91,8 +86,8 @@ public NotImplementedException(Throwable cause) {
9186
}
9287

9388
/**
94-
* Creates a new {@code NotImplementedException} with the specified error
95-
* message, cause, suppression flag, and stack trace writable flag.
89+
* Creates a new {@code NotImplementedException} with the specified error message, cause, suppression flag, and
90+
* stack trace writable flag.
9691
*
9792
* @param message the error message associated with this
9893
* exception

0 commit comments

Comments
 (0)