Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AbstractMojoExecutionException (0.49 sec)

  1. maven-plugin-api/src/main/java/org/apache/maven/plugin/AbstractMojoExecutionException.java

    package org.apache.maven.plugin;
    
    /**
     * Base exception.
     *
     */
    public abstract class AbstractMojoExecutionException extends Exception {
        protected Object source;
    
        protected String longMessage;
    
        public AbstractMojoExecutionException(String message) {
            super(message);
        }
    
        public AbstractMojoExecutionException(String message, Throwable cause) {
            super(message, cause);
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. maven-plugin-api/src/main/java/org/apache/maven/plugin/MojoFailureException.java

     * Throwing this exception causes a "BUILD FAILURE" message to be displayed.
     *
     */
    public class MojoFailureException extends AbstractMojoExecutionException {
        /**
         * Construct a new <code>MojoFailureException</code> exception providing the source and a short and long message:
         * these messages are used to improve the message written at the end of Maven build.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. maven-plugin-api/src/main/java/org/apache/maven/plugin/MojoExecutionException.java

    /**
     * An exception occurring during the execution of a plugin.<br>
     * Throwing this exception causes a "BUILD ERROR" message to be displayed.
     *
     */
    public class MojoExecutionException extends AbstractMojoExecutionException {
        /**
         * Construct a new <code>MojoExecutionException</code> exception providing the source and a short and long message:
         * these messages are used to improve the message written at the end of Maven build.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top