diff options
| author | Paul-Christian Volkmer | 2023-03-13 12:41:00 +0100 |
|---|---|---|
| committer | Paul-Christian Volkmer | 2023-03-13 12:41:00 +0100 |
| commit | 6804b290cd7f60e91b72b59f8922f4271b095417 (patch) | |
| tree | 537ba4a46426d769483ebd85147180c62ae0b7a7 /src/main/java/DNPM/exceptions/FormException.java | |
| parent | e89b31532b67cf2026f1b2b975176c950bfeaaa7 (diff) | |
Issue #7: Übernahme von MTB und MTB-Datum aus Hauptformular
Diffstat (limited to 'src/main/java/DNPM/exceptions/FormException.java')
| -rw-r--r-- | src/main/java/DNPM/exceptions/FormException.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main/java/DNPM/exceptions/FormException.java b/src/main/java/DNPM/exceptions/FormException.java new file mode 100644 index 0000000..4d0d6dd --- /dev/null +++ b/src/main/java/DNPM/exceptions/FormException.java @@ -0,0 +1,9 @@ +package DNPM.exceptions; + +public class FormException extends RuntimeException { + + public FormException(String message) { + super(message); + } + +} |
