CodeQL library for C#
codeql/csharp-all 5.3.0 (changelog, source)
Search

Class ControlFlow::ExceptionSuccessor

An exceptional control flow successor.

Example:

int M(string s)
{
    if (s == null)
        throw new ArgumentNullException(nameof(s));
    return s.Length;
}

The callable exit node of M is an exceptional successor of the node throw new ArgumentNullException(nameof(s));.

Import path

import csharp

Direct supertypes

Indirect supertypes

Predicates

toString

Gets a textual representation of this successor type.