PluginProbe
Yatra – Travel Booking & Tour Operator Software / trunk
Yatra – Travel Booking & Tour Operator Software vtrunk
3.0.14 3.0.14.1 3.0.14.2 3.0.12 3.0.13 3.0.11 3.0.10 3.0.9 3.0.8 3.0.7 3.0.6 3.0.5 3.0.5.1 3.0.4 3.0.3 3.0.2.9 3.0.2.7 3.0.2.8 3.0.2.6 trunk 1.0.0 2.0.0 2.0.1 2.0.10 2.0.11 All 82 releases
yatra / app / Exceptions / TripNotFoundException.php

TripNotFoundException.php in Yatra – Travel Booking & Tour Operator Software trunk, at app/Exceptions/TripNotFoundException.php

22 lines 490 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 declare(strict_types=1);
4
5 namespace Yatra\Exceptions;
6
7 /**
8 * Trip Not Found Exception
9 *
10 * Thrown when a requested trip cannot be found
11 */
12 class TripNotFoundException extends YatraException
13 {
14 protected string $errorCode = 'trip_not_found';
15
16 public function __construct(int $tripId, ?\Exception $previous = null)
17 {
18 $message = sprintf('Trip with ID %d not found', $tripId);
19 parent::__construct($message, 404, $previous, ['trip_id' => $tripId]);
20 }
21 }
22