17 lines
337 B
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);
|
|
}
|
|
}
|