<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0155</ErrorName>
  <Examples>
    <string>// CS0155: The type caught or thrown must be derived from System.Exception
// Line: 9

class Test
{
    public static void Main ()
    {
    	try {}
    	catch (bool b) {}
    }
}

</string>
    <string>// CS0155: The type caught or thrown must be derived from System.Exception
// Line: 9

class Test
{
    public static void Main ()
    {
    	try {}
    	catch (int[]) {}
    }
}

</string>
    <string>// CS0155: The type caught or thrown must be derived from System.Exception
// Line: 8
class X {
	static void Main ()
	{
		try {
		} catch (object e) {
			throw;
		}
	}
}
</string>
    <string>// CS0155: The type caught or thrown must be derived from System.Exception
// Line: 7
class X {
	static void Main ()
	{
		int a = 9;
		throw a;
	}
}
</string>
    <string>// CS0155: The type caught or thrown must be derived from System.Exception
// Line: 9

class X
{
    public int Test () =&gt; throw "";
}
</string>
  </Examples>
</ErrorDocumentation>