mirror of
https://github.com/pcvolkmer/onkostar-plugin-dnpm.git
synced 2025-07-04 18:12:55 +00:00
Issue #5: Vorschlag für den Aufbau des Projekts
* Maven-Projekt direkt im Hauptverzeichnis * Anpassung der Maven-POM-Datei - nicht benötigte Abhängigkeiten entfernt * Gitignore-Datei angelegt
This commit is contained in:
14
src/main/java/ATCCodes/FileParsingException.java
Normal file
14
src/main/java/ATCCodes/FileParsingException.java
Normal file
@ -0,0 +1,14 @@
|
||||
package ATCCodes;
|
||||
|
||||
/**
|
||||
* Exception to be thrown if any file parsing error occurs
|
||||
*
|
||||
* @author Paul-Christian Volkmer
|
||||
* @since 0.1.0
|
||||
*/
|
||||
public class FileParsingException extends RuntimeException {
|
||||
|
||||
public FileParsingException(final String msg) {
|
||||
super(msg);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user