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

com.marklogic.flux.api.FluxException Maven / Gradle / Ivy

There is a newer version: 1.0.0.ea1
Show newest version
/*
 * Copyright © 2024 MarkLogic Corporation. All Rights Reserved.
 */
package com.marklogic.flux.api;

/**
 * Wraps any exception not thrown by the MarkLogic Spark connector so that API users are not exposed directly to
 * Spark exceptions.
 */
public class FluxException extends RuntimeException {

    public FluxException(String message) {
        super(message);
    }

    public FluxException(Throwable cause) {
        super(cause.getMessage(), cause);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy