Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for StopActionException (0.31 sec)

  1. subprojects/core/src/main/java/org/gradle/api/tasks/StopActionException.java

     * need the if statement.</p>
     *
     * <p>Note that throwing this exception does not fail the execution of the task or the build.</p>
     */
    public class StopActionException extends GradleException {
        public StopActionException() {
            super();
        }
    
        public StopActionException(String message) {
            super(message);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/ExecuteActionsTaskExecuterTest.groovy

    import org.gradle.api.internal.tasks.TaskExecutionOutcome
    import org.gradle.api.internal.tasks.TaskStateInternal
    import org.gradle.api.internal.tasks.properties.TaskProperties
    import org.gradle.api.tasks.StopActionException
    import org.gradle.api.tasks.StopExecutionException
    import org.gradle.api.tasks.TaskExecutionException
    import org.gradle.caching.internal.controller.BuildCacheController
    import org.gradle.groovy.scripts.ScriptSource
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/TaskExecution.java

    import org.gradle.api.internal.tasks.properties.TaskProperties;
    import org.gradle.api.tasks.CacheableTask;
    import org.gradle.api.tasks.Copy;
    import org.gradle.api.tasks.StopActionException;
    import org.gradle.api.tasks.StopExecutionException;
    import org.gradle.api.tasks.Sync;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.deprecation.DocumentedFailure;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Task.java

     * build. A task action can abort execution of the action and continue to the next action of the task by throwing a
     * {@link org.gradle.api.tasks.StopActionException}. A task action can abort execution of the task and continue to the
     * next task by throwing a {@link org.gradle.api.tasks.StopExecutionException}. Using these exceptions allows you to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
Back to top