| 1: | <?php |
| 2: | |
| 3: | namespace LaravelUi5\Core\Exceptions; |
| 4: | |
| 5: | class InvalidReportActionException extends Ui5Exception |
| 6: | { |
| 7: | public function __construct(string $name) |
| 8: | { |
| 9: | parent::__construct(500, "Action `{$name}` does not implement ReportActionInterface."); |
| 10: | } |
| 11: | } |
| 12: | |