PHP Class League\FactoryMuffin\Exceptions\FlushMethodNotFoundException

This is thrown when the flush method of a model does not exist. This class extends MethodNotFoundException and ModelException, so you may want to try to catch one of those exceptions instead, if you want to be more general.
Author: Graham Campbell ([email protected])
Inheritance: extends League\FactoryMuffin\Exceptions\MethodNotFoundException
Datei anzeigen Open project: zizaco/factory-muff

Public Methods

Method Description
__construct ( string $class, string $method, string | null $message = null ) : void Create a new flush method not found exception instance.

Method Details

__construct() public method

Create a new flush method not found exception instance.
public __construct ( string $class, string $method, string | null $message = null ) : void
$class string The model class name.
$method string The method name.
$message string | null The exception message.
return void