1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-13 22:14:03 +00:00
tenancy/src/Exceptions/TenantCouldNotBeIdentifiedByPathException.php

15 lines
383 B
PHP

<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Exceptions;
use Stancl\Tenancy\Contracts\TenantCouldNotBeIdentifiedException;
class TenantCouldNotBeIdentifiedByPathException extends TenantCouldNotBeIdentifiedException
{
public function __construct(int|string $tenant_id)
{
$this->tenantCouldNotBeIdentified("on path with tenant key: $tenant_id");
}
}