nausharipov commented on code in PR #26932:
URL: https://github.com/apache/beam/pull/26932#discussion_r1214171925


##########
playground/frontend/playground_components/lib/src/controllers/example_loaders/examples_loader.dart:
##########
@@ -147,7 +154,12 @@ class ExamplesLoader {
     Example example;
     try {
       example = await loader.future;
-    } on Exception {
+    } on MultipleExceptions catch (ex) {
+      example = Example.empty(loader.sdk ?? Sdk.java);
+      _handleLoadException(loader, ex);
+    } on Exception catch (ex) {
+      example = Example.empty(loader.sdk ?? Sdk.java);
+      _handleLoadException(loader, ex);

Review Comment:
   Is this relevant now?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to