Files
codeql/csharp/ql/examples/snippets/constructor_call.ql
2019-08-02 15:30:32 +02:00

15 lines
307 B
Plaintext

/**
* @id cs/examples/constructor-call
* @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