Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for AbstractMojoExecutionException (0.11 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. impl/maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

                String exceptionMessage = t.getMessage();
                String longMessage = null;
    
                if (t instanceof AbstractMojoExecutionException abstractMojoExecutionException) {
                    longMessage = abstractMojoExecutionException.getLongMessage();
                } else if (t instanceof MojoException mojoException) {
                    longMessage = mojoException.getLongMessage();
                }
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Sat Apr 05 11:52:05 GMT 2025
    - 10.9K bytes
    - Click Count (0)
  2. compat/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.
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 2.5K bytes
    - Click Count (0)
Back to Top