com.mntviews.upload.exception.OracleUploadServiceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mnt-upload Show documentation
Show all versions of mnt-upload Show documentation
Data upload library for the different types of databases
The newest version!
package com.mntviews.upload.exception;
public class OracleUploadServiceException extends RuntimeException {
public OracleUploadServiceException() {
}
public OracleUploadServiceException(String message) {
super(message);
}
public OracleUploadServiceException(String message, Throwable cause) {
super(message, cause);
}
public OracleUploadServiceException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy