...
/Exception Stack, False Positive, Hidden, Periodic
Exception Stack, False Positive, Hidden, Periodic
This lesson introduces the following analysis patterns: exception stack trace, false positive error, hidden error, periodic error.
We'll cover the following...
Exception stack trace
Often the analysis of software traces starts with a search for short textual patterns, like a failure, an exception code, or simply the word “exception.” In addition, some software components can record their own exceptions and exceptions that were propagated to them, including full-stack traces. It is all too common in .NET
and Java environments. Here is a synthetic example based on real software traces:
In the embedded stack trace, we see that the App
object was trying to enumerate business
objects and asked the Store
object to get some data. The latter object was probably trying to communicate with the real data store via DCOM. The communication attempt failed with HRESULT
.
In the previous pattern example, ...