Files
fotospiel-app/app/Services/Photobooth/Exceptions/SparkboothUploadException.php

17 lines
337 B
PHP

<?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);
}
}