Files
codeql/csharp/ql/src/Language Abuse/RethrowExceptionFix.cs
2018-08-02 17:53:23 +01:00

11 lines
111 B
C#

try
{
Run();
status = Status.Success;
}
catch
{
status = Status.UnexpectedException;
throw; // GOOD
}