12 lines
313 B
C#
12 lines
313 B
C#
|
// 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) { }
|
||
|
}
|
||
|
}
|
||
|
|