- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for AbstractMojoExecutionException (0.08 sec)
-
compat/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: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
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(); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 10.9K bytes - Viewed (0) -
compat/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: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
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.
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.5K bytes - Viewed (0)