<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0160</ErrorName>
  <Examples>
    <string>// CS0160: A previous catch clause already catches all exceptions of this or a super type `System.Exception'
// Line: 8

class ClassMain {
        public static void Main() {
                try { }
                catch (System.Exception) { }
                catch (System.Exception) { }
        }
}
</string>
    <string>// CS0160: A previous catch clause already catches all exceptions of this or a super type `C&lt;dynamic&gt;'
// Line: 17

class D&lt;T&gt; : C&lt;object&gt;
{
}

class C&lt;T&gt; : System.Exception
{
}

class ClassMain
{
	public static void Main ()
	{
		try { }
		catch (C&lt;dynamic&gt;) { }
		catch (D&lt;object&gt;) { }
	}
}
</string>
    <string>// CS0160: A previous catch clause already catches all exceptions of this or a super type `System.Exception'
// Line: 8

class ClassMain {
        public static void Main() {
                try { }
                catch (System.Exception) { }
                catch (System.ApplicationException) { }
        }
}

</string>
  </Examples>
</ErrorDocumentation>