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

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

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

import io.quarkus.bootstrap.resolver.AppModelResolverException;

@SuppressWarnings("serial")
public class BootstrapMavenException extends AppModelResolverException {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy