Skip to content

Commit

Permalink
Add JD
Browse files Browse the repository at this point in the history
  • Loading branch information
sven1103 committed Oct 18, 2024
1 parent 09dcb1e commit ff7fd0c
Showing 1 changed file with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,23 @@
import life.qbic.datamanager.export.model.ResearchProject;

/**
* <b><interface short description - 1 Line!></b>
* <b>File format supplier</b>
* <p>
* Interface describing the API of suppliers for different file formats.
*
* <p><More detailed description - When to use, what it solves, etc.></p>
*
* @since <version tag>
* @since 1.6.0
*/
public interface FileFormatSupplier {

File from(String fileName, ResearchProject researchProject) throws FormatException;

class FormatException extends RuntimeException {
public FormatException(String message) {}
public FormatException(String message, Throwable cause) {}

public FormatException(String message) {
}

public FormatException(String message, Throwable cause) {
}
}

}

0 comments on commit ff7fd0c

Please sign in to comment.