geschenkgutscheine implementiert ("Paket verschenken"). Neuer Upload-Provider: Sparkbooth.

This commit is contained in:
Codex Agent
2025-12-07 16:54:58 +01:00
parent 3f3c0f1d35
commit 046e2fe3ec
50 changed files with 2422 additions and 130 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace App\Services\Photobooth\Exceptions;
use RuntimeException;
class SparkboothUploadException extends RuntimeException
{
public function __construct(
public readonly string $reason,
string $message,
public readonly ?int $statusCode = null
) {
parent::__construct($message);
}
}