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