Files
online.tbbank.gov.tm-larave…/nova/src/Exceptions/MissingActionHandlerException.php
2024-09-01 18:54:23 +05:00

21 lines
420 B
PHP

<?php
namespace Laravel\Nova\Exceptions;
use Exception;
class MissingActionHandlerException extends Exception
{
/**
* Create a new exception instance.
*
* @param mixed $action
* @param string $method
* @return static
*/
public static function make($action, $method)
{
return new static('Action handler ['.get_class($action).'@'.$method.'] not defined.');
}
}