get

fun get(throwableClass: Class<out Throwable>): ErrorInfoConverter<Throwable>?

Retrieves the error converter for a specific exception type.

Lookup walks the class hierarchy: if the exact class is not registered, each superclass is checked in order. This allows a converter registered for a framework/base exception to handle its subclasses.

Return

the registered converter for this exception type, or null if none is registered

Parameters

throwableClass

the exception class to look up