mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 09:34:05 +00:00
15 lines
303 B
PHP
15 lines
303 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Exceptions;
|
|
|
|
use Exception;
|
|
|
|
class NotImplementedException extends Exception
|
|
{
|
|
public function __construct($class, $method, $extra)
|
|
{
|
|
parent::__construct("The $class class does not implement the $method method. $extra");
|
|
}
|
|
}
|