Code sync from Shipping Portal, independent deployment of Vue Polling, checkout from dillon/34-jenkins-vapor

This commit is contained in:
Dillon Ngo
2023-12-30 01:15:27 +08:00
parent 1ddf7923a5
commit 18df0e256b
37 changed files with 1281 additions and 23 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);
}
}