国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
293B

  1. <?php
  2. if (!defined('DEDEINC')) exit('dedebiz');
  3. class ConditionNotAllowedException extends \Exception
  4. {
  5. public function __construct($message = "Condition not allowed exception", $code = 0, \Throwable $previous = null)
  6. {
  7. parent::__construct($message, $code, $previous);
  8. }
  9. }