Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MavenBuilderException (0.19 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/MavenBuilderException.java

    import org.apache.maven.api.annotations.Experimental;
    
    /**
     * Base class for all maven exceptions carrying {@link BuilderProblem}s.
     *
     * @since 4.0.0
     */
    @Experimental
    public abstract class MavenBuilderException extends MavenException {
    
        /**
         * The collection of problems associated with this exception.
         */
        private final ProblemCollector<BuilderProblem> problems;
    
        /**
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderException.java

    import org.apache.maven.api.annotations.Experimental;
    
    /**
     * The Exception class throw by the {@link SettingsBuilder}.
     *
     * @since 4.0.0
     */
    @Experimental
    public class SettingsBuilderException extends MavenBuilderException {
    
        @Serial
        private static final long serialVersionUID = 4714858598345418083L;
    
        /**
         * @param message the message to give
         * @param e the {@link Exception}
         */
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Dec 19 14:50:21 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilderException.java

    import org.apache.maven.api.annotations.Experimental;
    
    /**
     * The Exception class throw by the {@link ToolchainsBuilder}.
     *
     * @since 4.0.0
     */
    @Experimental
    public class ToolchainsBuilderException extends MavenBuilderException {
    
        @Serial
        private static final long serialVersionUID = 7899871809665729349L;
    
        /**
         * @param message the message to give
         * @param e the {@link Exception}
         */
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Dec 19 14:50:21 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top