1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 14:34:04 +00:00

WIP findBy()

This commit is contained in:
Samuel Štancl 2019-10-24 18:57:30 +02:00
parent 0e39bec265
commit 696863b1d4
3 changed files with 37 additions and 4 deletions

View 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");
}
}