staticExceptionCache

private val staticExceptionCache: Cache<Class<*>, List<Class<out Event>>>

Tracks which event types each static subscriber class has exception handlers for.

Each key corresponds to a class containing one or more static (or @JvmStatic) methods annotated with @ExceptionHandler, and the associated value lists all event types for which that class has exception handlers registered in exceptionMethodCache.

This mirrors staticEventCache, but for exception handlers.