summaryrefslogtreecommitdiff
path: root/platform/darwin/src/NSBundle+MGLAdditions.m
diff options
context:
space:
mode:
Diffstat (limited to 'platform/darwin/src/NSBundle+MGLAdditions.m')
-rw-r--r--platform/darwin/src/NSBundle+MGLAdditions.m6
1 files changed, 4 insertions, 2 deletions
diff --git a/platform/darwin/src/NSBundle+MGLAdditions.m b/platform/darwin/src/NSBundle+MGLAdditions.m
index 37f78963d3..d472e40b1f 100644
--- a/platform/darwin/src/NSBundle+MGLAdditions.m
+++ b/platform/darwin/src/NSBundle+MGLAdditions.m
@@ -2,6 +2,8 @@
#import "MGLAccountManager.h"
+const MGLExceptionName MGLBundleNotFoundException = @"MGLBundleNotFoundException";
+
@implementation NSBundle (MGLAdditions)
+ (instancetype)mgl_frameworkBundle {
@@ -14,8 +16,8 @@
if (bundlePath) {
bundle = [self bundleWithPath:bundlePath];
} else {
- [NSException raise:@"MGLBundleNotFoundException" format:
- @"The Mapbox framework bundle could not be found. If using the Mapbox Maps SDK for iOS as a static framework, make sure that Mapbox.bundle is copied into the root of the app bundle."];
+ [NSException raise:MGLBundleNotFoundException
+ format:@"The Mapbox framework bundle could not be found. If using the Mapbox Maps SDK for iOS as a static framework, make sure that Mapbox.bundle is copied into the root of the app bundle."];
}
}