initial commit
This commit is contained in:
18
app/Exceptions/Hosting/ProvisioningException.php
Normal file
18
app/Exceptions/Hosting/ProvisioningException.php
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user