aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/GRPCClient/private/GRPCWrappedCall.m
diff options
context:
space:
mode:
authorGravatar murgatroid99 <mlumish@google.com>2015-04-29 10:28:26 -0700
committerGravatar murgatroid99 <mlumish@google.com>2015-04-29 10:28:26 -0700
commitdef47aa9f39f375150d63eedea67b89d98de5638 (patch)
tree6efaa0c01ae492b26867534c8aebdb8d10e60bee /src/objective-c/GRPCClient/private/GRPCWrappedCall.m
parent6a084f46b421ee1f4ec9ff0c9e16d8678baef20f (diff)
Removed thrown error in one case
Diffstat (limited to 'src/objective-c/GRPCClient/private/GRPCWrappedCall.m')
-rw-r--r--src/objective-c/GRPCClient/private/GRPCWrappedCall.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/objective-c/GRPCClient/private/GRPCWrappedCall.m b/src/objective-c/GRPCClient/private/GRPCWrappedCall.m
index 934557ff75..c79daf434e 100644
--- a/src/objective-c/GRPCClient/private/GRPCWrappedCall.m
+++ b/src/objective-c/GRPCClient/private/GRPCWrappedCall.m
@@ -301,7 +301,7 @@
if (errorHandler) {
errorHandler();
} else {
- [NSException raise:@"Operation Exception" format:@"The batch failed with an unknown error"];
+ return;
}
}
for (void(^processor)(void) in opProcessors) {