You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
java.lang.NullPointerException
at org.kitodo.production.forms.createprocess.CreateProcessForm.getAllRulesetDivisions(CreateProcessForm.java:113)
at org.kitodo.production.forms.createprocess.CreateProcessForm.updateRulesetAndDocType(CreateProcessForm.java:100)
at org.kitodo.production.forms.createprocess.CreateProcessForm.prepareProcess(CreateProcessForm.java:356)
The reason is that if an error occurs while reading the ruleset, the exception is caught and the object remains uninitialized. Then an attempt is made to access the object. In addition, only the exception message is logged, without a stack trace, so that the error cannot be traced:
Furthermore, the code is named unsystematically at the point. The ruleset management is sometimes referred to as the ruleset and sometimes as the ruleset management interface. The names should be standardized.
The text was updated successfully, but these errors were encountered:
The reason is that if an error occurs while reading the ruleset, the exception is caught and the object remains uninitialized. Then an attempt is made to access the object. In addition, only the exception message is logged, without a stack trace, so that the error cannot be traced:
Furthermore, the code is named unsystematically at the point. The ruleset management is sometimes referred to as the ruleset and sometimes as the ruleset management interface. The names should be standardized.
The text was updated successfully, but these errors were encountered: