org.zodiac.datasource.jdbc.exception.DataSourceRuntimeException Maven / Gradle / Ivy
The newest version!
package org.zodiac.datasource.jdbc.exception;
public class DataSourceRuntimeException extends RuntimeException {
private static final long serialVersionUID = -7440689836268724660L;
public DataSourceRuntimeException() {
super();
}
public DataSourceRuntimeException(String message, Throwable cause) {
super(message, cause);
}
public DataSourceRuntimeException(String message) {
super(message);
}
public DataSourceRuntimeException(Throwable cause) {
super(cause);
}
}