- <?php
- namespace App\Generated\Exceptions;
- use Kamicloud\StubApi\Exceptions\BaseException;
- class ServerInternalErrorException extends BaseException
- {
- public function __construct($message = null)
- {
- parent::__construct($message, ErrorCode::SERVER_INTERNAL_ERROR);
- }
- }
|