19 lines
392 B
PHP
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);
|
|
}
|
|
}
|