Error name as class name instead of exception name

hey @committedteadrinker.

not sure if I’ve got this right, mind sharing a pseudo-code of your custom HandledException, a fake RuntimeException("test"), how you wrap it and how you send it to Sentry and what you expect as a title, it’d be easier for understanding the problem.

My guess is:

class HandledException(e: Exception) : Exception {}

so you do:

val exc = HandledException(RuntimeException("test"))
Sentry.captureException(exc)

what would you expect as a title? the issues page and issue details have a title (bold) and a subtitle (normal), which one are you talking about?

The title and subtitle of the sample above would be:

Title (bold): HandledException
Subtitle (mormal): java.lang.RuntimeException: test

Also, which version of the Android SDK are you working on? thanks.