mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 14:34:04 +00:00
WIP findBy()
This commit is contained in:
parent
0e39bec265
commit
696863b1d4
3 changed files with 37 additions and 4 deletions
13
src/Exceptions/NotImplementedException.php
Normal file
13
src/Exceptions/NotImplementedException.php
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
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");
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue