Changeset 59141 for trunk/src/wp-includes/SimplePie/src/Exception.php
- Timestamp:
- 09/30/2024 10:48:16 PM (8 months ago)
- Location:
- trunk/src/wp-includes/SimplePie/src
- Files:
-
- 1 added
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/SimplePie/src/Exception.php
r59140 r59141 1 1 <?php 2 2 3 /** 3 4 * SimplePie … … 6 7 * Takes the hard work out of managing a complete RSS/Atom solution. 7 8 * 8 * Copyright (c) 2004-20 16, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors9 * Copyright (c) 2004-2022, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors 9 10 * All rights reserved. 10 11 * … … 42 43 */ 43 44 45 namespace SimplePie; 46 47 use Exception as NativeException; 48 44 49 /** 45 50 * General SimplePie exception class … … 47 52 * @package SimplePie 48 53 */ 49 class SimplePie_Exception extendsException54 class Exception extends NativeException 50 55 { 51 56 } 57 58 class_alias('SimplePie\Exception', 'SimplePie_Exception');
Note: See TracChangeset
for help on using the changeset viewer.