liquibase.sdk.exception.UnexpectedLiquibaseSdkException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-core Show documentation
Show all versions of liquibase-core Show documentation
Liquibase is a tool for managing and executing database changes.
The newest version!
package liquibase.sdk.exception;
public class UnexpectedLiquibaseSdkException extends RuntimeException {
private static final long serialVersionUID = 4900618014872610542L;
public UnexpectedLiquibaseSdkException() {
}
public UnexpectedLiquibaseSdkException(String message) {
super(message);
}
public UnexpectedLiquibaseSdkException(String message, Throwable cause) {
super(message, cause);
}
public UnexpectedLiquibaseSdkException(Throwable cause) {
super(cause);
}
}