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