Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AntlrSourceGenerationException (0.35 sec)

  1. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/AntlrSourceGenerationException.java

    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)
  2. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/AntlrTask.java

            if (errorCount < 0) {
                throw new AntlrSourceGenerationException("There were errors during grammar generation", result.getException());
            } else if (errorCount == 1) {
                throw new AntlrSourceGenerationException("There was 1 error during grammar generation", result.getException());
            } else if (errorCount > 1) {
                throw new AntlrSourceGenerationException("There were "
                    + errorCount
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.api.plugins.antlr.internal.AntlrSourceGenerationException> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (AntlrSourceGenerationException.java:0)
    Class <org.gradle.api.plugins.antlr.internal.AntlrSpec> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (AntlrSpec.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top