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

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

There is a newer version: 3.17.0.CR1
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy