1: <?php
2:
3: namespace LaravelUi5\Core\Exceptions;
4:
5: class InvalidParameterValueException extends Ui5Exception
6: {
7: public function __construct(string $name, string $type)
8: {
9: parent::__construct(400, "Invalid value for parameter `{$name}` (expected {$type})");
10: }
11: }
12: