HTML-DOM/lib/DOM/DOMException.php

56 lines
1.9 KiB
PHP
Raw Normal View History

<?php
declare(strict_types=1);
namespace dW\HTML5;
class DOMException extends \Exception {
// From PHP's DOMException; keeping error codes consistent
2021-03-19 15:01:49 -04:00
const WRONG_DOCUMENT = 4;
const NO_MODIFICATION_ALLOWED = 7;
2021-03-19 15:01:49 -04:00
const DOCUMENT_ELEMENT_DOCUMENTFRAG_EXPECTED = 100;
const STRING_EXPECTED = 101;
const OUTER_HTML_FAILED_NOPARENT = 102;
protected static $messages = [
2021-03-19 15:01:49 -04:00
4 => 'Supplied node does not belong to this document',
2021-03-17 18:21:29 -04:00
7 => 'Modification not allowed here',
2021-03-19 15:01:49 -04:00
100 => 'Document, Element, or DocumentFragment expected; found %s',
101 => 'The "%s" argument should be a string; found %s',
102 => 'Failed to set the "outerHTML" property; the element does not have a parent node'
];
public function __construct(int $code, ...$args) {
if (!isset(self::$messages[$code])) {
throw new Exception(Exception::INVALID_CODE);
}
$message = self::$messages[$code];
$previous = null;
if ($args) {
// Grab a previous exception if there is one.
if ($args[0] instanceof \Throwable) {
$previous = array_shift($args);
} elseif (end($args) instanceof \Throwable) {
$previous = array_pop($args);
}
}
// Count the number of replacements needed in the message.
preg_match_all('/(\%(?:\d+\$)?s)/', $message, $matches);
2021-03-19 15:01:49 -04:00
$count = count($matches[1]);
// If the number of replacements don't match the arguments then oops.
if (count($args) !== $count) {
throw new Exception(Exception::INCORRECT_PARAMETERS_FOR_MESSAGE, $count);
}
if ($count > 0) {
// Go through each of the arguments and run sprintf on the strings.
$message = call_user_func_array('sprintf', array_merge([$message], $args));
}
parent::__construct($message, $code, $previous);
}
}