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

com.rinoto.migramongo.MongoMigrationException Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package com.rinoto.migramongo;

/**
 * Exception thrown when something went wrong in the migration. It contains the status with the proper state and message.
 * 
 * @author rinoto
 */
public class MongoMigrationException extends Exception {

    private static final long serialVersionUID = 1591991696179369392L;

    private final MigraMongoStatus status;

    public MongoMigrationException(MigraMongoStatus status) {
        this.status = status;
    }

    public MigraMongoStatus getStatus() {
        return status;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy