initial commit

This commit is contained in:
TheOnlyMace
2026-05-17 13:26:14 +02:00
commit 75299b723d
176 changed files with 20327 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace App\Exceptions\Hosting;
use Exception;
class ProvisioningException extends Exception
{
public function __construct(
string $message,
public readonly ?string $step = null,
public readonly ?array $context = null,
int $code = 0,
?\Throwable $previous = null,
) {
parent::__construct($message, $code, $previous);
}
}