repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
avoid using a custom sources file for the net_2_1_raw profile
[mcs.git]
/
errors
/
cs0160.cs
blob
6e40311ed9b1e68d8cc543214a0afe94756f0c7c
1
// cs0160.cs: A previous catch clause already catches all exceptions of this or a super type `System.Exception'
2
// Line: 8
3
4
class
ClassMain
{
5
public static void
Main
() {
6
try
{ }
7
catch
(
System
.
Exception
)
{ }
8
catch
(
System
.
ApplicationException
)
{ }
9
}
10
}
11