File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
src/main/java/eth/likespro/commons/wrapping Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1- Enhance WrappedExceptionException with detailed exception information
1+ Refactor toException() method in WrappedException to return WrappedExceptionException
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ plugins {
55}
66
77group = ' eth.likespro'
8- version = ' 1.8.1 '
8+ version = ' 1.8.2 '
99
1010sourceCompatibility = 17
1111targetCompatibility = 17
Original file line number Diff line number Diff line change @@ -62,7 +62,12 @@ class WrappedException(
6262 }
6363 }
6464
65- fun toException (): Exception {
65+ /* *
66+ * Converts the wrapped exception to a WrappedExceptionException.
67+ *
68+ * @return The WrappedExceptionException.
69+ */
70+ fun toException (): WrappedExceptionException {
6671 return WrappedExceptionException (this )
6772 }
6873}
You can’t perform that action at this time.
0 commit comments