liquibase.parser.core.ParsedNodeException 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.
package liquibase.parser.core;
public class ParsedNodeException extends Exception {
private static final long serialVersionUID = -7841445953043527911L;
public ParsedNodeException(String message) {
super(message);
}
public ParsedNodeException(String message, Throwable cause) {
super(message, cause);
}
public ParsedNodeException(Throwable cause) {
super(cause);
}
}