FleetCart/Modules/Coupon/Exceptions/CouponNotExistsException.php

22 lines
418 B
PHP
Raw Normal View History

2023-06-11 12:14:03 +00:00
<?php
namespace Modules\Coupon\Exceptions;
use Exception;
2023-12-03 14:07:47 +00:00
use Illuminate\Http\Response;
2023-06-11 12:14:03 +00:00
class CouponNotExistsException extends Exception
{
/**
* Render the exception into an HTTP response.
*
2023-12-03 14:07:47 +00:00
* @return Response
2023-06-11 12:14:03 +00:00
*/
public function render()
{
return response()->json([
'message' => trans('coupon::messages.not_exists'),
], 404);
}
}