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

io.quarkus.devtools.codestarts.CodestartException Maven / Gradle / Ivy

package io.quarkus.devtools.codestarts;

public class CodestartException extends RuntimeException {

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

    public CodestartException(Throwable cause) {
        super(null, cause);
    }

    public CodestartException(String message) {
        super(message, null);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy