repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[bcl] Update BCL Linked Size
[mono-project.git]
/
mcs
/
errors
/
cs0619-20.cs
blob
8b5147009f01b35aac6469d38b83f422be494889
1
// CS0619: `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
}