![JAR search and dependency download from the Maven repository](/logo.png)
net.ozwolf.mongo.migrations.exception.MongoTrekFailureException Maven / Gradle / Ivy
package net.ozwolf.mongo.migrations.exception;
/**
* Mongo Trek Failure Exception
*
* This is the wrapping, checked exception that {@code MongoTrek} will throw in the case of any exception being encountered.
*
* @see net.ozwolf.mongo.migrations.MongoTrek
*/
public class MongoTrekFailureException extends Exception {
public MongoTrekFailureException(Throwable e) {
super(String.format("mongoTrek failed: %s", e.getMessage()), e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy