D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
www
/
vendor
/
stancl
/
tenancy
/
src
/
Exceptions
/
Filename :
NotASubdomainException.php
back
Copy
<?php declare(strict_types=1); namespace Stancl\Tenancy\Exceptions; use Exception; class NotASubdomainException extends Exception { public function __construct(string $hostname) { parent::__construct("Hostname $hostname does not include a subdomain."); } }