国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

10 lines
281B

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