Files
HexaHost-Panel/app/Exceptions/Hosting/ProvisioningException.php
2026-05-17 13:26:14 +02:00

19 lines
392 B
PHP

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