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
Currently, exceptions are thrown and caught all over the place.
Consolidate the usage of exceptions. If applicable, prefer to fail-fast (wrapping thrown exception in unchecked exceptions (IllegalStateE, IllegalArgumentE, ...)
Try to separate all IO from the domain classes. (F.e. IO should not be done in constructors, ...)
The text was updated successfully, but these errors were encountered:
Currently, exceptions are thrown and caught all over the place.
The text was updated successfully, but these errors were encountered: