mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 12:34:03 +00:00
24 lines
534 B
PHP
Executable File
24 lines
534 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Classes\Modules\Contacts\Exceptions;
|
|
use App\Classes\Exceptions\Common\ErrorException;
|
|
use App\Classes\ValueObjects\Constants\HttpStatus;
|
|
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: user
|
|
* Date: 07/03/2019
|
|
* Time: 3:25 PM
|
|
*/
|
|
final class CannotCreateContactException extends ErrorException
|
|
{
|
|
/** @param string $message */
|
|
|
|
/**
|
|
* CannotCreateContactException constructor.
|
|
*/
|
|
public function __construct(string $message)
|
|
{
|
|
parent::_construct($message, HttpStatus::BAD_REQUEST);
|
|
}
|
|
} |