1<?php23// SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue4// SPDX-License-Identifier: BSD-3-Clause56declare(strict_types=1);78namespace SimplePie\HTTP;910use SimplePie\Exception as SimplePieException;1112/**13* Client exception class14*15* @internal16*/17final class ClientException extends SimplePieException18{19}20