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

io.quarkus.dev.appstate.ApplicationStartException Maven / Gradle / Ivy

There is a newer version: 3.17.0
Show newest version
package io.quarkus.dev.appstate;

/**
 * Exception that is reported if the application fails to start
 *
 * This exception has already been logged when this exception is generated,
 * so should not be logged again
 */
public class ApplicationStartException extends RuntimeException {

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy