<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0724</ErrorName>
  <Examples>
    <string>// cs0724.cs: A throw statement with no arguments is not allowed inside of a finally clause nested inside of the innermost catch clause
// Line: 14

class C
{
	static void Test()
	{
		try
		{
			throw new System.Exception();
		}
		catch
		{
			try
			{
			}
			finally
			{
				throw;
			}
		}
	}
}
</string>
  </Examples>
</ErrorDocumentation>