io.quarkus.dev.appstate.ApplicationStartException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-development-mode-spi Show documentation
Show all versions of quarkus-development-mode-spi Show documentation
SPI classes for Quarkus Development mode.
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