ResponseConverters not invoke when error in GlobalRequestFilters

if GlobalRequestFilters throw error, ResponseConverters will not be invoke, how should I do it correct

Note: Exceptions shouldn’t be thrown in Response Filters, they should be written directly to the Response which short-circuits the Request to prevent any further processing.

Response Converters themselves are only applied to Service Responses, you can access them from HostContext.AppHost.RequestConverters if you need to manually access them.