mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 23:14:03 +00:00
18 lines
433 B
PHP
18 lines
433 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Exceptions;
|
|
|
|
use Exception;
|
|
use Stancl\Tenancy\Resolvers\PathTenantResolver;
|
|
|
|
class RouteIsMissingTenantParameterException extends Exception
|
|
{
|
|
public function __construct()
|
|
{
|
|
$parameter = PathTenantResolver::$tenantParameterName;
|
|
|
|
parent::__construct("The route's first argument is not the tenant id (configured paramter name: $parameter).");
|
|
}
|
|
}
|