| 1: | <?php |
| 2: | |
| 3: | namespace LaravelUi5\Core\Exceptions; |
| 4: | |
| 5: | class OutdatedVersionException extends Ui5Exception |
| 6: | { |
| 7: | public function __construct(string $app, string $requested, string $registered) |
| 8: | { |
| 9: | parent::__construct(410, "The current version of Ui5App `{$app}` is `{$registered}`. Requested version `{$requested}` is no longer supported."); |
| 10: | } |
| 11: | } |
| 12: |