<?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>CS0155</ErrorName>
  <Examples>
    <string>// cs0155-2.cs: 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: 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: 9

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

</string>
    <string>// cs0155.cs: The type caught or thrown must be derived from System.Exception
// Line: 7
class X {
	static void Main ()
	{
		int a = 9;
		throw a;
	}
}
</string>
  </Examples>
</ErrorDocumentation>