Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ReportedException (0.42 sec)

  1. subprojects/core/src/main/java/org/gradle/initialization/ReportedException.java

     */
    package org.gradle.initialization;
    
    /**
     * Wraps an exception which has already been logged, and should not be logged again.
     */
    public class ReportedException extends RuntimeException {
        public ReportedException() {
        }
    
        public ReportedException(Throwable throwable) {
            super(throwable);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 07 05:08:21 UTC 2018
    - 929 bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/ExceptionReportingActionTest.groovy

            RuntimeException reportedException
    
            when:
            action.execute(listener)
    
            then:
            1 * target.execute(listener) >> { throw failure }
            1 * loggingOutput.flush()
            1 * reporter.execute(_) >> { arguments -> reportedException = arguments[0] }
            reportedException instanceof ContextAwareException
            reportedException.getCause() instanceof InitializationException
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/ExceptionReportingAction.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.launcher.cli;
    
    import org.gradle.api.Action;
    import org.gradle.initialization.ReportedException;
    import org.gradle.initialization.exception.InitializationException;
    import org.gradle.internal.exceptions.ContextAwareException;
    import org.gradle.internal.logging.LoggingOutputInternal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/RunBuildAction.java

    import org.gradle.configuration.GradleLauncherMetaData;
    import org.gradle.initialization.DefaultBuildCancellationToken;
    import org.gradle.initialization.NoOpBuildEventConsumer;
    import org.gradle.initialization.ReportedException;
    import org.gradle.internal.concurrent.Stoppable;
    import org.gradle.internal.daemon.client.execution.ClientBuildRequestContext;
    import org.gradle.internal.nativeintegration.console.ConsoleDetector;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/RunBuildActionTest.groovy

    import org.gradle.configuration.GradleLauncherMetaData
    import org.gradle.initialization.BuildRequestContext
    import org.gradle.initialization.DefaultBuildCancellationToken
    import org.gradle.initialization.ReportedException
    import org.gradle.internal.concurrent.Stoppable
    import org.gradle.internal.daemon.client.execution.ClientBuildRequestContext
    import org.gradle.internal.nativeintegration.console.ConsoleDetector
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top