objectExceptionCache

private val objectExceptionCache: Cache<Any, List<Class<out Event>>>

Tracks which event types each subscriber object has exception handlers for.

Keys are weak references (via Caffeine's weakKeys), allowing automatic cleanup when subscribers become unreachable. The value is the list of event types under which this subscriber's exception handlers were registered in exceptionMethodCache.

This mirrors objectEventCache, but for @ExceptionHandler methods.