org.molgenis.file.ingest.execution.FileIngestException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of molgenis-file-ingester Show documentation
Show all versions of molgenis-file-ingester Show documentation
File ingestion from remote URLs.
package org.molgenis.file.ingest.execution;
/** @deprecated use class that extends from {@link org.molgenis.i18n.CodedRuntimeException} */
@Deprecated
public class FileIngestException extends RuntimeException {
private static final long serialVersionUID = 1L;
public FileIngestException() {
super();
}
public FileIngestException(
String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
public FileIngestException(String message, Throwable cause) {
super(message, cause);
}
public FileIngestException(String message) {
super(message);
}
public FileIngestException(Throwable cause) {
super(cause);
}
}