mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 12:34:03 +00:00
13 lines
407 B
PHP
Executable File
13 lines
407 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Classes\Modules\ControllerLogic\Exceptions;
|
|
|
|
use App\Classes\ValueObjects\Constants\HttpStatus;
|
|
|
|
final class ResourceConflictException extends ServiceApiException {
|
|
public function __construct(?string $message = null) {
|
|
parent::__construct($message ?? 'Unable to create the requested resource as it already exists',
|
|
HttpStatus::RESOURCE_ALREADY_EXISTS);
|
|
}
|
|
}
|