File ManagerCurrent Directory: wp-content/plugins/backwpup/src/Infrastructure/Xml/ExceptionLinux appserver-0d5e4f1e-php-cc8da225320a42ba9b7d66cba40b1f03 6.6.123+ #1 SMP PREEMPT_DYNAMIC Wed Mar 11 09:04:28 UTC 2026 x86_64Edit File: InvalidXmlException.php <?php declare(strict_types=1); namespace Inpsyde\BackWPup\Infrastructure\Xml\Exception; final class InvalidXmlException extends \RuntimeException { /** * Array of XML errors. * * @var \LibXMLError[] */ private $errors = []; /** * Constructs an InvalidXmlException. * * @param string $message The exception message * @param \LibXMLError[] $errors The array of XML errors */ public function __construct(string $message, array $errors = []) { $this->errors = $errors; parent::__construct($message); } /** * Get the XML errors. * * @return \LibXMLError[] Array of XML errors */ public function getErrors(): array { return $this->errors; } } Upload File Directory Listing NameTypeSizeActions.. (Parent Directory)DirInvalidWxrFileException.phpFile157.00 B Rename | Delete | EditInvalidXmlException.phpFile781.00 B Rename | Delete | Edit