| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Exception; |
| 6: | |
| 7: | use Illuminate\Http\Response; |
| 8: | |
| 9: | class InternalServerErrorException extends ProtocolException |
| 10: | { |
| 11: | protected $httpCode = Response::HTTP_INTERNAL_SERVER_ERROR; |
| 12: | protected $odataCode = 'internal_server_error'; |
| 13: | protected $message = 'Internal server error'; |
| 14: | } |
| 15: |