The product encounters an error but does not provide a status code or return value to indicate that an error has occurred.
Impact: Varies by ContextUnexpected State
Errors that are not properly reported could place the system in an unexpected state that could lead to unintended behaviors.
java
// Something that may throw an exception.* ...} catch (Throwable t) { ``` logger.error("Caught: " + t.toString()); return; }