Files
izyim/app/Classes/Modules/ControllersLogic/Exceptions/ResourceNotFoundException.php
T
2019-03-19 17:11:21 +08:00

12 lines
367 B
PHP
Executable File

<?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);
}
}