mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 04:14:03 +00:00
15 lines
371 B
PHP
15 lines
371 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Exceptions;
|
|
|
|
use Stancl\Tenancy\Contracts\TenantCouldNotBeIdentifiedException;
|
|
|
|
class TenantCouldNotBeIdentifiedByIdException extends TenantCouldNotBeIdentifiedException
|
|
{
|
|
public function __construct(int|string $tenant_id)
|
|
{
|
|
$this->tenantCouldNotBeIdentified("by tenant key: $tenant_id");
|
|
}
|
|
}
|