com.mntviews.mnt.bridge.file.service.exception.BridgeFileException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mnt-bridge-file Show documentation
Show all versions of mnt-bridge-file Show documentation
Worker-queue implementation for uploading files to the databases using native mechanisms like
sqlldr,pg_dump ...
package com.mntviews.mnt.bridge.file.service.exception;
public class BridgeFileException extends RuntimeException{
public BridgeFileException() {
}
public BridgeFileException(String message) {
super(message);
}
public BridgeFileException(String message, Throwable cause) {
super(message, cause);
}
public BridgeFileException(Throwable cause) {
super(cause);
}
}