org.wildfly.plugin.tools.DeploymentException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wildfly-plugin-tools Show documentation
Show all versions of wildfly-plugin-tools Show documentation
A group of tools for interacting/managing with a WildFly container
The newest version!
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/
package org.wildfly.plugin.tools;
/**
* An exception that represents a deployment error.
*
* @author James R. Perkins
*/
@SuppressWarnings({ "WeakerAccess", "unused" })
public class DeploymentException extends RuntimeException {
/**
* Creates a new deployment exception.
*
* @param message the message for the exception
*/
public DeploymentException(final String message) {
super(message);
}
/**
* Creates a new deployment exception.
*
* @param cause the cause of the exception
*/
public DeploymentException(final Throwable cause) {
super(cause);
}
/**
* Creates a new deployment exception.
*
* @param message the message for the exception
* @param cause the cause of the exception
*/
public DeploymentException(final String message, final Throwable cause) {
super(message, cause);
}
}