Currently, the below code will still produce a warning:
/// <exception cref="System.Exception" />
void M1() { }
/// <exception cref="System.Exception" />
void M2()
{
M1(); // THROW001
}
It would be great if adding the documentation comment removes the warning.