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

com.mongodb.hadoop.splitter.SplitFailedException Maven / Gradle / Ivy

Go to download

The MongoDB Connector for Hadoop is a plugin for Hadoop that provides the ability to use MongoDB as an input source and/or an output destination.

There is a newer version: 2.0.2
Show newest version
package com.mongodb.hadoop.splitter;

public class SplitFailedException extends Exception {

    public SplitFailedException(final String message) {
        super(message);
    }

    public SplitFailedException(final String message, final Throwable cause) {
        super(message, cause);
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy