mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-20 04:54:01 +00:00
create new contact recode and clean up
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace App\Classes\Modules\Contacts\Exceptions;
|
||||
|
||||
use App\Classes\Exceptions\Common\ErrorException;
|
||||
use App\Classes\ValueObjects\Constants\HttpStatus;
|
||||
|
||||
final class CannotCreateContactException extends ErrorException
|
||||
{
|
||||
/**
|
||||
* @param string $message
|
||||
*/
|
||||
public function __construct(string $message) {
|
||||
parent::__construct($message, HttpStatus::BAD_REQUEST);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user