webman-admin/app/common/exception/ControllerExtendException.php

14 lines
316 B
PHP
Raw Permalink Normal View History

2023-02-28 15:13:10 +08:00
<?php
namespace app\common\exception;
class ControllerExtendException extends \Exception
{
public function __construct(string $message, string $model = '', array $config = [])
{
$this->message = '控制器需要继承模块的基础控制器:' . $message;
$this->model = $model;
}
}