File tree 4 files changed +6
-5
lines changed
4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,11 @@ NS_ASSUME_NONNULL_BEGIN
20
20
*/
21
21
extern NSString *const BFTaskErrorDomain;
22
22
23
+ /* !
24
+ An error code used for <BFTask taskForCompletionOfAllTasks:>, if there were multiple errors.
25
+ */
26
+ extern NSInteger const kBFMultipleErrorsError ;
27
+
23
28
/* !
24
29
An exception that is thrown if there was multiple exceptions on <BFTask taskForCompletionOfAllTasks:>.
25
30
*/
Original file line number Diff line number Diff line change 20
20
}
21
21
22
22
NSString *const BFTaskErrorDomain = @" bolts" ;
23
+ NSInteger const kBFMultipleErrorsError = 80175001 ;
23
24
NSString *const BFTaskMultipleExceptionsException = @" BFMultipleExceptionsException" ;
24
25
25
26
@interface BFTask () {
Original file line number Diff line number Diff line change 31
31
32
32
NS_ASSUME_NONNULL_BEGIN
33
33
34
- /* ! @abstract 80175001: There were multiple errors. */
35
- extern NSInteger const kBFMultipleErrorsError ;
36
-
37
34
@interface Bolts : NSObject
38
35
39
36
/* !
Original file line number Diff line number Diff line change 10
10
11
11
#import " Bolts.h"
12
12
13
- NSInteger const kBFMultipleErrorsError = 80175001 ;
14
-
15
13
@implementation Bolts
16
14
17
15
+ (NSString *)version {
You can’t perform that action at this time.
0 commit comments