TenantAtlas/apps/platform/app/Services/Graph/GraphException.php
2026-04-08 09:33:16 +02:00

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