mirror of
https://github.com/github/codeql.git
synced 2026-05-05 21:55:19 +02:00
17 lines
257 B
C#
17 lines
257 B
C#
class EmptyCatchBlock
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
// ...
|
|
try
|
|
{
|
|
SecurityManager.dropPrivileges();
|
|
}
|
|
catch (PrivilegeDropFailedException e)
|
|
{
|
|
|
|
}
|
|
// ...
|
|
}
|
|
}
|