mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-15 12:04:03 +00:00
15 lines
275 B
PHP
15 lines
275 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Exceptions;
|
|
|
|
use Exception;
|
|
|
|
class NoConnectionSetException extends Exception
|
|
{
|
|
public function __construct($manager)
|
|
{
|
|
parent::__construct("No connection was set on this $manager instance.");
|
|
}
|
|
}
|