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

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

package io.quarkus.devtools.codestarts;

public class CodestartStructureException extends RuntimeException {

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

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy