public static void RegisterExceptionConvertor <T>(IExceptionConvertor <T> exceptionConvertor) where T : IException { exceptionConvertors.Add(new ExceptionConvertor <T>(exceptionConvertor)); }
public ExceptionConvertor(IExceptionConvertor <T> converter) { this.converter = converter; }