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

com.mntviews.mnt.bridge.file.service.exception.BridgeFileException Maven / Gradle / Ivy

Go to download

Worker-queue implementation for uploading files to the databases using native mechanisms like sqlldr,pg_dump ...

There is a newer version: 1.0.1
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy