All Downloads are FREE. Search and download functionalities are using the official Maven repository.

liquibase.snapshot.EmptyDatabaseSnapshot Maven / Gradle / Ivy

There is a newer version: 4.28.0
Show newest version
package liquibase.snapshot;

import liquibase.database.Database;
import liquibase.exception.DatabaseException;
import liquibase.structure.DatabaseObject;

public class EmptyDatabaseSnapshot extends DatabaseSnapshot {
    public EmptyDatabaseSnapshot(Database database) throws DatabaseException, InvalidExampleException {
        super(new DatabaseObject[0], database);
    }

    public EmptyDatabaseSnapshot(Database database, SnapshotControl snapshotControl) throws DatabaseException, InvalidExampleException {
        super(new DatabaseObject[0], database, snapshotControl);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy