org.molgenis.oneclickimporter.exceptions.EmptySheetException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of molgenis-one-click-importer Show documentation
Show all versions of molgenis-one-click-importer Show documentation
Plugin module for importing data with automatic metadata determination (not part of
the importer
framework).
package org.molgenis.oneclickimporter.exceptions;
/** @deprecated use class that extends from {@link org.molgenis.i18n.CodedRuntimeException} */
@Deprecated
public class EmptySheetException extends Exception {
public EmptySheetException(String s) {
super(s);
}
}