Files
codeql/csharp/ql/examples/constructor_call.ql
2019-07-26 17:47:11 +02:00

14 lines
272 B
Plaintext

/**
* @name Call to constructor
* @description Finds places where we call 'new System.Exception(...)'.
* @tags call
* constructor
* new
*/
import csharp
from ObjectCreation new
where new.getObjectType().hasQualifiedName("System.Exception")
select new