This method tries to summarize an exception in a single string. But the entire point of the structured exception work was to get real stack traces. This method just hurts, and does not help. For example, if you have a NullPointerException, nothing will help except for the stack trace, but detailedMessage will only emit the exception name. We should remove all uses of this (there are over 50 right now).
This method tries to summarize an exception in a single string. But the entire point of the structured exception work was to get real stack traces. This method just hurts, and does not help. For example, if you have a
NullPointerException, nothing will help except for the stack trace, but detailedMessage will only emit the exception name. We should remove all uses of this (there are over 50 right now).