mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 10:54:04 +00:00
15 lines
309 B
PHP
15 lines
309 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Database\Exceptions;
|
|
|
|
use Exception;
|
|
|
|
class DatabaseManagerNotRegisteredException extends Exception
|
|
{
|
|
public function __construct(string $driver)
|
|
{
|
|
parent::__construct("Database manager for driver $driver is not registered.");
|
|
}
|
|
}
|