Zahlungsparser

This commit is contained in:
2026-09-09 16:55:08 +02:00
parent ae13841699
commit 651b6147bf
38 changed files with 3308 additions and 22 deletions
@@ -0,0 +1,17 @@
<?php
declare(strict_types=1);
namespace App\Support;
use RuntimeException;
/**
* Die hochgeladene Datei passt nicht zum eingestellten Ruleset.
*
* Die Meldung ist für die Aktionsleitung gedacht und wird unverändert angezeigt -- sie muss also
* sagen, welche Spalte fehlt oder was sonst nicht stimmt, nicht bloß „Fehler beim Einlesen".
*/
class BankStatementParseException extends RuntimeException
{
}