1<?php23// SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue4// SPDX-License-Identifier: BSD-3-Clause56declare(strict_types=1);78namespace SimplePie;910use Exception as NativeException;1112/**13* General SimplePie exception class14*/15class Exception extends NativeException16{17}1819class_alias('SimplePie\Exception', 'SimplePie_Exception');20