mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 04:24:00 +00:00
8a28eb1790
This reverts merge request !5
15 lines
328 B
PHP
15 lines
328 B
PHP
<?php
|
|
|
|
namespace App\Classes\Modules\Accounts\Exceptions;
|
|
|
|
use App\Classes\Exceptions\Common\ErrorException;
|
|
|
|
final class CannotCreateUserException extends ErrorException {
|
|
/**
|
|
* @param string $message
|
|
*/
|
|
public function __construct(string $message) {
|
|
parent::__construct($message, __CLASS__);
|
|
}
|
|
}
|