| 1: | <?php |
| 2: | |
| 3: | namespace LaravelUi5\Core\Exceptions; |
| 4: | |
| 5: | class MissingAssetException extends Ui5Exception |
| 6: | { |
| 7: | public function __construct(string $type, string $slug, string $version, string $file) |
| 8: | { |
| 9: | parent::__construct(404, "Asset not found: {$type}/{$slug}/{$version}/{$file}"); |
| 10: | } |
| 11: | } |
| 12: |