mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-15 09:34:04 +00:00
10 lines
197 B
PHP
10 lines
197 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Exceptions;
|
|
|
|
class CannotChangeUuidOrDomainException extends \Exception
|
|
{
|
|
protected $message = 'Uuid and domain cannot be changed.';
|
|
}
|