mirror of
https://github.com/github/codeql.git
synced 2026-02-11 12:41:06 +01:00
11 lines
111 B
C#
11 lines
111 B
C#
try
|
|
{
|
|
Run();
|
|
status = Status.Success;
|
|
}
|
|
catch
|
|
{
|
|
status = Status.UnexpectedException;
|
|
throw; // GOOD
|
|
}
|