1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-14 18:54:04 +00:00

Get rid of TenantDatabaseDoesNotExist exception

This commit is contained in:
Samuel Štancl 2020-06-29 09:58:37 +02:00
parent 1e18dc3a74
commit fe52a3c4ea
6 changed files with 3 additions and 27 deletions

View file

@ -1,15 +0,0 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Exceptions;
use Exception;
class TenantDatabaseDoesNotExistException extends Exception
{
public function __construct($database)
{
parent::__construct("Database $database does not exist.");
}
}