blob: 3ae39e47670d4985998f4946700167bdd78eb0d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
- (void) foo:(NSString*) inString
{
@try {
} @catch(NSException* const inException)
{
}
}
- (void) bar:(NSString*) inString
{
@try {
}
@catch (NSException* const inException) {
}
@finally {
}
}
|