org.wildfly.plugin.deployment.MojoDeploymentException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wildfly-maven-plugin Show documentation
Show all versions of wildfly-maven-plugin Show documentation
A maven plugin that allows various management operations to be executed on WildFly Application
Server.
The newest version!
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/
package org.wildfly.plugin.deployment;
import org.apache.maven.plugin.MojoExecutionException;
/**
* Wrapped exception for {@link MojoExecutionException}.
*
* @author James R. Perkins
*/
public class MojoDeploymentException extends MojoExecutionException {
public MojoDeploymentException(final String message, final Exception cause) {
super(message, cause);
}
public MojoDeploymentException(final Exception cause, final String format, final Object... args) {
this(String.format(format, args), cause);
}
public MojoDeploymentException(final String message, final Throwable cause) {
super(message, cause);
}
public MojoDeploymentException(final Throwable cause, final String format, final Object... args) {
this(String.format(format, args), cause);
}
public MojoDeploymentException(final String message) {
super(message);
}
public MojoDeploymentException(final String format, final Object... args) {
this(String.format(format, args));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy