D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
public_html
/
vendor
/
stancl
/
tenancy
/
src
/
Contracts
/
Filename :
TenantCannotBeCreatedException.php
back
Copy
<?php declare(strict_types=1); namespace Stancl\Tenancy\Contracts; abstract class TenantCannotBeCreatedException extends \Exception { abstract public function reason(): string; protected $message; public function __construct() { $this->message = 'Tenant cannot be created. Reason: ' . $this->reason(); } }