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

io.quarkus.panache.common.exception.PanacheQueryException Maven / Gradle / Ivy

There is a newer version: 3.17.0.CR1
Show newest version
package io.quarkus.panache.common.exception;

public class PanacheQueryException extends RuntimeException {
    public PanacheQueryException(String s) {
        super(s);
    }

    public PanacheQueryException(String s, Throwable cause) {
        super(s, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy