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
2009-03-15 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs0619-20.cs
blob
1138d28cb4d694d4b236b7ef911ee55a4a43eb5d
1
// cs0619-20.cs: `ObsoleteException' is obsolete: `'
2
// Line: 15
3
4
using
System
;
5
6
[
System
.
Obsolete
(
""
,
true
)]
7
class
ObsoleteException
:
Exception
{
8
}
9
10
class
MainClass
{
11
public void
Method
()
12
{
13
try
{
14
}
15
catch
(
ObsoleteException
) {
16
}
17
}
18
}