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-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0155-2.cs
blob
87288c5193600d3922517b3971ad81cd8e794d88
1
// cs0155-2.cs: The type caught or thrown must be derived from System.Exception
2
// Line: 8
3
class
X
{
4
static void
Main
()
5
{
6
try
{
7
}
catch
(
object
e
) {
8
throw
;
9
}
10
}
11
}