17 lines
330 B
PHP
17 lines
330 B
PHP
<?php
|
|
/**
|
|
* InvalidException.php
|
|
*
|
|
* @copyright 2023 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author Edward Yang <yangjin@guangda.work>
|
|
* @created 2023-05-25 14:48:12
|
|
* @modified 2023-05-25 14:48:12
|
|
*/
|
|
|
|
namespace Beike\Exceptions;
|
|
|
|
class InvalidException extends \Exception
|
|
{
|
|
}
|