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
2010-01-31 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0155-4.cs
blob
6c1d105c7b8a6d56fd589034fd347dd98ba9b256
1
// CS0155: The type caught or thrown must be derived from System.Exception
2
// Line: 9
3
4
class
Test
5
{
6
public static void
Main
()
7
{
8
try
{}
9
catch
(
bool
b
) {}
10
}
11
}
12