我想自己做个例外,比如AggregateException:
var exceptions = ErrorCollectionExtension.GetErrorsAsExceptions(compiler.Errors);
throw new AggregateException("Error", exceptions);
可以作为参数List:Exceptions
public MyException(string message, IEnumerable<Exception> innerExceptions)
: base(message, innerExceptions)
{
}
innerExceptions但是我在 base上遇到错误。
如何通过收集它来制作自己的例外AggregateException?
慕工程0101907
相关分类