mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 12:33:56 +00:00
15 lines
392 B
PHP
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
|
|
);
|
|
}
|
|
}
|