mirror of
https://gitlab.com/omair-personal/izyim.git
synced 2026-08-19 12:24:11 +00:00
12 lines
371 B
PHP
Executable File
12 lines
371 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Classes\Modules\ControllerLogic\Exceptions;
|
|
|
|
use App\Classes\ValueObjects\Constants\HttpStatus;
|
|
|
|
final class MalformedRequestException extends ServiceApiException {
|
|
public function __construct(?string $message = null) {
|
|
parent::__construct($message ?? 'Unable to process the request as it is malformed', HttpStatus::BAD_REQUEST);
|
|
}
|
|
}
|