mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 11:14:04 +00:00
15 lines
307 B
PHP
15 lines
307 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Contracts;
|
|
|
|
use Exception;
|
|
|
|
abstract class TenantCouldNotBeIdentifiedException extends Exception
|
|
{
|
|
protected function tenantCouldNotBeIdentified(string $how): void
|
|
{
|
|
$this->message = 'Tenant could not be identified ' . $how;
|
|
}
|
|
}
|