liquibase.exception.UnknownFormatException 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.exception;
/**
* Thrown by SnapshotParserFactory if it cannot find a parser for a given file format.
*/
public class UnknownFormatException extends LiquibaseException {
private static final long serialVersionUID = 4451113070331972484L;
public UnknownFormatException() {
}
public UnknownFormatException(String message) {
super(message);
}
public UnknownFormatException(String message, Throwable cause) {
super(message, cause);
}
public UnknownFormatException(Throwable cause) {
super(cause);
}
}