Deprecate ExceptionUtils.ExceptionUtils()

This commit is contained in:
Gary Gregory 2023-07-02 17:11:14 -04:00
parent 6000dd8a3c
commit bbf5714b5a
2 changed files with 4 additions and 0 deletions

View File

@ -121,6 +121,7 @@ The <action> type attribute can be add,update,fix,remove.
<action issue="LANG-1699" type="fix" dev="ggregory" due-to="Darren Coleman">Corrected value of SystemUtils.JAVA_VENDOR #1066.</action>
<action type="fix" dev="ggregory" due-to="step-security-bot, Gary Gregory">[StepSecurity] ci: Harden GitHub Actions #1067.</action>
<action type="fix" dev="ggregory" due-to="Dimitrios Efthymiou">Update Javadoc for the insert methods in ArrayUtils #1078.</action>
<action type="fix" dev="ggregory" due-to="Gary Gregory">Deprecate ExceptionUtils.ExceptionUtils().</action>
<!-- ADD -->
<action type="add" dev="ggregory" due-to="Gary Gregory">Add GitHub coverage.yml.</action>
<action type="add" dev="ggregory" due-to="Gary Gregory">Add EnumUtils.getEnumSystemProperty(...).</action>

View File

@ -1012,7 +1012,10 @@ public class ExceptionUtils {
/**
* Public constructor allows an instance of {@link ExceptionUtils} to be created, although that is not
* normally necessary.
*
* @deprecated Will be private in 3.0.
*/
@Deprecated
public ExceptionUtils() {
}
}