summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLShape.mm
diff options
context:
space:
mode:
Diffstat (limited to 'platform/darwin/src/MGLShape.mm')
-rw-r--r--platform/darwin/src/MGLShape.mm7
1 files changed, 3 insertions, 4 deletions
diff --git a/platform/darwin/src/MGLShape.mm b/platform/darwin/src/MGLShape.mm
index e76e06c7e4..59643dcb6a 100644
--- a/platform/darwin/src/MGLShape.mm
+++ b/platform/darwin/src/MGLShape.mm
@@ -40,7 +40,7 @@ bool operator==(const CLLocationCoordinate2D lhs, const CLLocationCoordinate2D r
}
- (mbgl::Geometry<double>)geometryObject {
- [NSException raise:@"MGLAbstractClassException"
+ [NSException raise:MGLAbstractClassException
format:@"MGLShape is an abstract class"];
return mbgl::Point<double>();
}
@@ -103,9 +103,8 @@ bool operator==(const CLLocationCoordinate2D lhs, const CLLocationCoordinate2D r
- (CLLocationCoordinate2D)coordinate
{
- [[NSException exceptionWithName:@"MGLAbstractClassException"
- reason:@"MGLShape is an abstract class"
- userInfo:nil] raise];
+ [NSException raise:MGLAbstractClassException
+ format:@"MGLShape is an abstract class"];
return kCLLocationCoordinate2DInvalid;
}