mirror of
https://gitlab.com/omair-personal/izyim.git
synced 2026-08-19 20:34:09 +00:00
21 lines
347 B
PHP
21 lines
347 B
PHP
<?php
|
|
|
|
namespace App\Classes\Modules\Contacts\Exceptions;
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: user
|
|
* Date: 07/03/2019
|
|
* Time: 3:25 PM
|
|
*/
|
|
final class CannotCreateContactException
|
|
{
|
|
/** @param string $message */
|
|
|
|
/**
|
|
* CannotCreateContactException constructor.
|
|
*/
|
|
public function __construct(string $message)
|
|
{
|
|
|
|
}
|
|
} |