Ler em inglês

Compartilhar via


Erro do Compilador CS0724

Não é permitida uma instrução throw sem argumentos em uma cláusula finally que está aninhada dentro da cláusula catch delimitadora mais próxima

Exemplo

O exemplo a seguir gera CS0724 devido à instrução throw dentro do bloco de cláusula finally:

C#
// CS0724.cs  
using System;  
  
class Program
{
    static void Test()
    {
        try
        {
            throw new Exception();
        }
        catch
        {
            try
            {
            }
            finally
            {
                throw; // CS0724
            }
        }
    }

    static void Main()
    {
    }
}