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

org.frozenarc.datapipe.writer.WriteException Maven / Gradle / Ivy

The newest version!
package org.frozenarc.datapipe.writer;

import org.frozenarc.datapipe.StreamProcessException;

/**
 * Author: mpanchal
 * Date: 2022-12-03 16:03
 * The exception can be thrown during writing stage.
 */
public class WriteException extends StreamProcessException {

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

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

    public WriteException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy