-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExceptions.m
58 lines (49 loc) · 1.02 KB
/
Exceptions.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//
// Exceptions.m
// ApkDropZone
//
// Created by dstd on 13/05/15.
// Copyright (c) 2015 stdlabs. All rights reserved.
//
#import "Exceptions.h"
@implementation Exceptions
+ (NSException*)try:(void(^)(void))tryBlock {
if (!tryBlock)
return nil;
@try {
tryBlock();
}
@catch (NSException* e) {
return e;
}
}
+ (void)try:(void(^)(void))tryBlock except:(void(^)(NSException *))exceptBlock {
if (!tryBlock)
return;
@try {
tryBlock();
}
@catch (NSException* e) {
if (exceptBlock)
exceptBlock(e);
}
}
+ (void)try:(void (^)(void))tryBlock except:(void (^)(NSException *))exceptBlock finally:(void (^)(void))finallyBlock {
if (!tryBlock) {
if (finallyBlock)
finallyBlock();
return;
}
@try {
tryBlock();
}
@catch (NSException* e) {
if (exceptBlock)
exceptBlock(e);
}
@finally {
if (finallyBlock)
finallyBlock();
}
}
@end