erster versuch

This commit is contained in:
jstaerk
2025-06-26 14:16:36 +02:00
parent ea14c700cb
commit 1b174e243f
5 changed files with 264 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package org.mustangproject.Exceptions;
import java.text.ParseException;
/***
* will be thrown if an invoice cant be reproduced numerically
*/
public class ArithmeticException extends ArithmetricException {
public ArithmeticException() {
this("");
}
public ArithmeticException(String details) {
// super("Could not reproduce the invoice. " + details, 0);
}
}

View File

@@ -4,6 +4,7 @@ import java.text.ParseException;
/***
* will be thrown if an invoice cant be reproduced numerically
* (deprecated, because of typo)
*/
public class ArithmetricException extends ParseException {
public ArithmetricException() {