PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
stancl
/
tenancy
/
src
/
Exceptions
/
Editing: DomainOccupiedByOtherTenantException.php
<?php declare(strict_types=1); namespace Stancl\Tenancy\Exceptions; use Exception; class DomainOccupiedByOtherTenantException extends Exception { public function __construct($domain) { parent::__construct("The $domain domain is occupied by another tenant."); } }
SAVE
CANCEL