Files
exchange-2.0/app/Classes/Exceptions/CriteriaNotFulfilledException.php
T
2025-05-10 00:48:20 +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
);
}
}