Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 151 for contextual (4.02 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/IsolationException.java

     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot.impl;
    
    import org.gradle.internal.exceptions.Contextual;
    import org.gradle.internal.logging.text.TreeFormatter;
    
    /**
     * Represents a problem while attempting to isolate an instance.
     */
    @Contextual
    public class IsolationException extends RuntimeException {
        public IsolationException(Object value) {
            super(format(value));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/commandline/TaskConfigurationException.java

    import org.gradle.api.GradleException;
    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.internal.exceptions.Contextual;
    import org.gradle.internal.exceptions.FailureResolutionAware;
    
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.UserInput;
    
    @Contextual
    public class TaskConfigurationException extends GradleException implements FailureResolutionAware {
    
        private final String taskPath;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 28 05:00:22 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ComponentMetadataProcessorFactory.java

     * such as the repository from which the dependency comes from.
     * <p>
     * The {@link MetadataResolutionContext} enables a {@link ComponentMetadataProcessor} to execute with the proper context.
     */
    public interface ComponentMetadataProcessorFactory {
    
        /**
         * Creates a contextual {@link ComponentMetadataProcessor}
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkSerializationException.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.workers.internal;
    
    import org.gradle.internal.exceptions.Contextual;
    
    @Contextual
    class WorkSerializationException extends RuntimeException {
        WorkSerializationException(String message, Throwable cause) {
            super(message, cause);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 883 bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/MissingValueException.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.provider;
    
    import org.gradle.internal.exceptions.Contextual;
    
    @Contextual
    public class MissingValueException extends IllegalStateException {
        public MissingValueException(String message) {
            super(message);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 979 bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CacheOpenException.java

     * limitations under the License.
     */
    package org.gradle.cache;
    
    import org.gradle.api.GradleException;
    import org.gradle.internal.exceptions.Contextual;
    
    @Contextual
    public class CacheOpenException extends GradleException {
        public CacheOpenException(String message) {
            super(message);
        }
    
        public CacheOpenException(String message, Throwable cause) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 986 bytes
    - Viewed (0)
  7. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/AntlrSourceGenerationException.java

     * limitations under the License.
     */
    
    package org.gradle.api.plugins.antlr.internal;
    
    import org.gradle.api.GradleException;
    import org.gradle.internal.exceptions.Contextual;
    
    @Contextual
    public class AntlrSourceGenerationException extends GradleException {
        public AntlrSourceGenerationException(String message, Throwable cause) {
            super(message, cause);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 953 bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/initialization/exception/InitializationException.java

     * limitations under the License.
     */
    
    package org.gradle.initialization.exception;
    
    import org.gradle.api.GradleException;
    import org.gradle.internal.exceptions.Contextual;
    
    @Contextual
    public class InitializationException extends GradleException {
    
        public InitializationException(Throwable cause) {
            super("Gradle could not start your build.", cause);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 11 09:42:47 UTC 2020
    - 951 bytes
    - Viewed (0)
  9. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/CheckstyleInvocationException.java

     * limitations under the License.
     */
    
    package org.gradle.api.plugins.quality.internal;
    
    import org.gradle.api.GradleException;
    import org.gradle.internal.exceptions.Contextual;
    
    @Contextual
    class CheckstyleInvocationException extends GradleException {
        CheckstyleInvocationException(String message, Throwable cause) {
            super(message, cause);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 939 bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ServiceCreationException.java

     * limitations under the License.
     */
    
    package org.gradle.internal.service;
    
    import org.gradle.internal.exceptions.Contextual;
    
    /**
     * Thrown when a service instance cannot be created.
     */
    @Contextual
    public class ServiceCreationException extends ServiceLookupException {
        public ServiceCreationException(String message) {
            super(message);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top