Revert "Merge branch 'revert-b9668bb6' into 'master'"

This reverts merge request !157
This commit is contained in:
Dillon Ngo
2024-02-11 10:28:05 +00:00
parent 304379b147
commit f8230990f4
60 changed files with 2380 additions and 152 deletions
@@ -0,0 +1,11 @@
<?php
namespace App\Classes\Exceptions;
use App\Classes\ValueObjects\Constants\HttpStatus;
final class JobResourceNotFoundException extends ServiceApiException {
public function __construct(?string $message = null) {
parent::__construct($message ?? 'Unable to find the requested resource', HttpStatus::RESOURCE_NOT_FOUND);
}
}