1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 17:54:03 +00:00
This commit is contained in:
Samuel Štancl 2019-10-17 13:38:47 +02:00
commit fb6b186af5

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Exceptions;
use Exception;
@ -10,4 +12,4 @@ class TenantDoesNotExistException extends Exception
{
$this->message = "Tenant with this id does not exist: $id";
}
}
}