dev.jfr4jdbc.Jfr4JdbcException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jfr4jdbc-driver Show documentation
Show all versions of jfr4jdbc-driver Show documentation
A JDBC wrapper driver recording JDK Flight Recorder events
package dev.jfr4jdbc;
public class Jfr4JdbcException extends Exception {
private static final long serialVersionUID = 1399094602315268521L;
public Jfr4JdbcException(String message) {
super(message);
}
public Jfr4JdbcException(Throwable cause) {
super(cause);
}
public Jfr4JdbcException(String message, Throwable cause) {
super(message, cause);
}
public Jfr4JdbcException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy