Static Exception Handler Entry
internal data class StaticExceptionHandlerEntry(val owner: Class<*>, val invoker: StaticExceptionInvokers, val priority: Int) : ExceptionHandlerEntry
Internal representation of a static exception handler.
A StaticExceptionHandlerEntry describes a @ExceptionHandler method declared as static (in Java) or as a @JvmStatic member on a Kotlin object/companion. Unlike InstanceExceptionHandlerEntry, it is not tied to a specific subscriber instance and therefore does not rely on weak references for lifecycle management.
Static exception handlers remain active until they are explicitly unregistered by the event bus.
Properties
Link copied to clipboard
the compiled StaticExceptionInvokers strategy used to invoke the underlying handler method.