Files
izyim/app/Classes/Modules/ControllersLogic/Exceptions/ResourceNotFoundException.php
T
2019-02-14 11:43:19 +08:00

12 lines
367 B
PHP

<?php
namespace App\Classes\Modules\ControllerLogic\Exceptions;
use App\Classes\ValueObjects\Constants\HttpStatus;
final class ResourceNotFoundException extends ServiceApiException {
public function __construct(?string $message = null) {
parent::__construct($message ?? 'Unable to find the requested resource', HttpStatus::RESOURCE_NOT_FOUND);
}
}