mirror of
https://gitlab.com/omair-personal/izyim.git
synced 2026-08-19 20:34:09 +00:00
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__);
|
|
}
|
|
}
|