mirror of
https://bitbucket.org/vendoo/vendoo_v1.0.git
synced 2025-12-25 11:47:40 +00:00
25 lines
598 B
Objective-C
25 lines
598 B
Objective-C
/*
|
|
* Copyright (c) 2016, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
#import "BFTask+Exceptions.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
static BOOL taskCatchExceptions = YES;
|
|
|
|
BOOL BFTaskCatchesExceptions(void) {
|
|
return taskCatchExceptions;
|
|
}
|
|
|
|
void BFTaskSetCatchesExceptions(BOOL catchExceptions) {
|
|
taskCatchExceptions = catchExceptions;
|
|
}
|
|
|
|
NS_ASSUME_NONNULL_END
|