Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for maybeThrow (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationBridge.java

                } catch (Throwable e) {
                    LOGGER.debug("Build operation notification listener threw an error on " + notification, e);
                    maybeThrow(e);
                }
            }
    
            private void maybeThrow(Throwable e) {
                if (e instanceof Error && !(e instanceof LinkageError)) {
                    throw (Error) e;
                }
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top