1: <?php
2:
3: declare(strict_types=1);
4:
5: namespace LaravelUi5\OData\Exception;
6:
7: use Illuminate\Http\Response;
8:
9: class NotFoundException extends ProtocolException
10: {
11: protected $httpCode = Response::HTTP_NOT_FOUND;
12: protected $odataCode = 'not_found';
13: protected $message = 'Not found';
14: }
15: