org.frozenarc.datapipe.writer.WriteException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of data-pipe Show documentation
Show all versions of data-pipe Show documentation
Processing data while streaming
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);
}
}