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

io.quarkus.bootstrap.resolver.maven.DeploymentInjectionException Maven / Gradle / Ivy

There is a newer version: 3.17.0.CR1
Show newest version
package io.quarkus.bootstrap.resolver.maven;

/**
 *
 * @author Alexey Loubyansky
 */
public class DeploymentInjectionException extends RuntimeException {

    /**
     *
     */
    private static final long serialVersionUID = 1L;

    public DeploymentInjectionException(String message, Throwable cause) {
        super(message, cause);
    }

    public DeploymentInjectionException(Throwable cause) {
        super(cause);
    }

    public DeploymentInjectionException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy