mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 04:24:00 +00:00
16 lines
394 B
PHP
Executable File
16 lines
394 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Classes\Modules\Accounts\Exceptions;
|
|
|
|
use App\Classes\Exceptions\Common\ErrorException;
|
|
use App\Classes\ValueObjects\Constants\HttpStatus;
|
|
|
|
final class CannotCreateOrderException extends ErrorException {
|
|
/**
|
|
* @param string $message
|
|
*/
|
|
public function __construct(string $message) {
|
|
parent::__construct($message, HttpStatus::BAD_REQUEST);
|
|
}
|
|
}
|