Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for BaseSelectionException (0.21 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/BaseSelectionException.java

    import static org.gradle.internal.logging.text.StyledTextOutput.Style.UserInput;
    
    abstract class BaseSelectionException extends InvalidUserDataException implements FailureResolutionAware {
        private final String taskName;
        private final String targetName;
    
        public BaseSelectionException(String message, String taskName, String targetName) {
            super(message);
            this.taskName = taskName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 19 11:25:50 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/TaskSelectionException.java

    /**
     * A {@code TaskSelectionException} is thrown when the tasks to execute cannot be selected due to some user input problem.
     */
    public class TaskSelectionException extends BaseSelectionException {
        public TaskSelectionException(String message) {
            super(message, ProjectInternal.TASKS_TASK, "tasks");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 23 13:10:39 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/ProjectSelectionException.java

    /**
     * Thrown when the tasks to execute cannot be selected due to a problem resolving the project to select tasks from.
     */
    public class ProjectSelectionException extends BaseSelectionException {
        public ProjectSelectionException(String message) {
            super(message, ProjectInternal.PROJECTS_TASK, "projects");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 23 13:10:39 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top