1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-15 12:04:03 +00:00
tenancy/src/Exceptions/NoConnectionSetException.php
2020-05-22 09:01:31 +00:00

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.");
}
}