Files
shipping-portal/app/Classes/Exceptions/CriteriaNotFulfilledException.php
T
2025-06-20 09:41:17 +08:00

15 lines
392 B
PHP

<?php
namespace App\Classes\Exceptions;
use App\Classes\ValueObjects\Constants\HttpStatus;
final class CriteriaNotFulfilledException extends ServiceApiException {
public function __construct(?string $message = null) {
parent::__construct(
$message ?? 'One or more required criteria were not fulfilled.',
HttpStatus::VALIDATION_FAILED
);
}
}