EscolaLMS/Cart

View on GitHub
src/Exceptions/OrderNotFoundException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace EscolaLms\Cart\Exceptions;

use Symfony\Component\HttpKernel\Exception\UnprocessableEntityHttpException;
use Throwable;

class OrderNotFoundException extends UnprocessableEntityHttpException
{
    public function __construct($message = "Order Not Found", $code = 422, ?Throwable $previous = null)
    {
        parent::__construct($message, $previous, $code);
    }
}