1: <?php
2:
3: namespace LaravelUi5\Core\Exceptions;
4:
5: class MissingCardManifestException extends Ui5Exception
6: {
7: public function __construct(string $manifestPath)
8: {
9: parent::__construct(404, "Card manifest could not be found at `{$manifestPath}`");
10: }
11: }
12: