mirror of
https://github.com/github/codeql.git
synced 2026-02-28 21:03:50 +01:00
11 lines
128 B
C#
11 lines
128 B
C#
try
|
|
{
|
|
Run();
|
|
status = Status.Success;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
status = Status.UnexpectedException;
|
|
throw ex; // BAD
|
|
}
|