diff options
Diffstat (limited to 'vendor/simplepie/simplepie/src/Exception.php')
-rw-r--r-- | vendor/simplepie/simplepie/src/Exception.php | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/vendor/simplepie/simplepie/src/Exception.php b/vendor/simplepie/simplepie/src/Exception.php index 5c34c3483..9068dc036 100644 --- a/vendor/simplepie/simplepie/src/Exception.php +++ b/vendor/simplepie/simplepie/src/Exception.php @@ -5,7 +5,10 @@ * A PHP-Based RSS and Atom Feed Framework. * Takes the hard work out of managing a complete RSS/Atom solution. * - * Copyright (c) 2004-2022, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors + * Please note: This file is automatically generated by a build script. The + * full original source is always available from http://simplepie.org/ + * + * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are @@ -43,15 +46,10 @@ namespace SimplePie; -use Exception as NativeException; +class_exists('SimplePie_Exception'); -/** - * General SimplePie exception class - * - * @package SimplePie - */ -class Exception extends NativeException -{ +if (\false) { + class Exception extends \SimplePie_Exception + { + } } - -class_alias('SimplePie\Exception', 'SimplePie_Exception'); |