D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
www
/
vendor
/
stancl
/
tenancy
/
src
/
Exceptions
/
Filename :
TenancyNotInitializedException.php
back
Copy
<?php declare(strict_types=1); namespace Stancl\Tenancy\Exceptions; use Exception; class TenancyNotInitializedException extends Exception { public function __construct($message = '') { parent::__construct($message ?: 'Tenancy is not initialized.'); } }