Example usage for org.apache.maven.plugin MojoExecutionException subclass-usage

List of usage examples for org.apache.maven.plugin MojoExecutionException subclass-usage

Introduction

In this page you can find the example usage for org.apache.maven.plugin MojoExecutionException subclass-usage.

Usage

From source file org.codehaus.mojo.exception.CodedException.java

/**
 * @author <a href="mailto:m2@corridor-software.us">Kris Bravo</a>
 * @version $Id$
 */
public abstract class CodedException extends MojoExecutionException {

From source file org.codehaus.mojo.gwt.shell.ForkedProcessExecutionException.java

/**
 * 
 * @author <a href="mailto:nicolas@apache.org">Nicolas De Loof</a>
 */
public class ForkedProcessExecutionException extends MojoExecutionException {

From source file org.commonjava.ssl.plugin.SSLToolsMojoException.java

public class SSLToolsMojoException extends MojoExecutionException {

    private static final long serialVersionUID = 1L;
    private final Map<String, SSLToolsException> errors;

    public SSLToolsMojoException(Map<String, SSLToolsException> errors) {

From source file org.glassfish.jersey.test.maven.runner.ShellMojoExecutionException.java

/**
 * Mojo Execution exception that contains additional information regarding an error from an executed shell script.
 *
 * @author Stepan Vavra (stepan.vavra at oracle.com)
 */
public class ShellMojoExecutionException extends MojoExecutionException {

From source file org.glassfish.jersey.tests.memleaks.maven.runner.ShellMojoExecutionException.java

/**
 * Mojo Execution exception that contains additional information regarding an error from an executed shell script.
 *
 * @author Stepan Vavra (stepan.vavra at oracle.com)
 */
public class ShellMojoExecutionException extends MojoExecutionException {

From source file org.jboss.as.plugin.common.DeploymentExecutionException.java

/**
 * Wrapped exception for {@link MojoExecutionException}.
 *
 * @author <a href="mailto:jperkins@redhat.com">James R. Perkins</a>
 */
public class DeploymentExecutionException extends MojoExecutionException {

From source file org.jetbrains.kotlin.maven.ScriptExecutionException.java

public class ScriptExecutionException extends MojoExecutionException {
    public ScriptExecutionException(File script, String msg) {
        super("Error executing script " + script.getAbsolutePath() + ": " + msg);
    }

    public ScriptExecutionException(File script, String msg, Throwable cause) {

From source file org.jszip.maven.BuildPlanModifiedException.java

/**
 * The build plan has been modified in such a way that it cannot be compensated for and Maven must be restarted.
 *
 * @author stephenc
 * @since 21/02/2012 10:48
 */

From source file org.piraso.maven.overlay.InvalidOverlayConfigurationException.java

/**
 * Thrown if the overlay configuration is invalid.
 *
 * @author Stephane Nicoll
 * 
 * @version $Id: InvalidOverlayConfigurationException.java 659222 2008-05-22 19:33:48Z olamy $

From source file org.smallmind.nutsnbolts.maven.FormattedMojoExecutionException.java

public class FormattedMojoExecutionException extends MojoExecutionException {

    public FormattedMojoExecutionException(String message, Object... args) {

        super(String.format(message, args));
    }