mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-13 22:14:03 +00:00
15 lines
386 B
PHP
15 lines
386 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Exceptions;
|
|
|
|
use Stancl\Tenancy\Contracts\TenantCouldNotBeIdentifiedException;
|
|
|
|
class TenantCouldNotBeIdentifiedByRequestDataException extends TenantCouldNotBeIdentifiedException
|
|
{
|
|
public function __construct(mixed $payload)
|
|
{
|
|
$this->tenantCouldNotBeIdentified("by request data with payload: $payload");
|
|
}
|
|
}
|