All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wildfly.plugin.tools.DeploymentException Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy