17 lines
312 B
PHP
17 lines
312 B
PHP
<?php
|
|
|
|
namespace App\Services\Graph;
|
|
|
|
use RuntimeException;
|
|
|
|
class GraphException extends RuntimeException
|
|
{
|
|
public function __construct(
|
|
string $message,
|
|
public readonly ?int $status = null,
|
|
public readonly array $context = [],
|
|
) {
|
|
parent::__construct($message);
|
|
}
|
|
}
|