2021-03-16 15:37:20 -04:00
|
|
|
<?php
|
2021-09-29 00:19:10 -04:00
|
|
|
/**
|
|
|
|
* @license MIT
|
2021-10-18 14:49:56 -04:00
|
|
|
* Copyright 2017 Dustin Wilson, J. King, et al.
|
2021-09-29 00:19:10 -04:00
|
|
|
* See LICENSE and AUTHORS files for details
|
|
|
|
*/
|
2021-03-21 17:38:05 -04:00
|
|
|
|
2021-03-16 15:37:20 -04:00
|
|
|
declare(strict_types=1);
|
2021-09-26 12:46:53 -04:00
|
|
|
namespace MensBeam\HTML\DOM;
|
2021-03-16 15:37:20 -04:00
|
|
|
|
2023-11-19 00:46:07 -05:00
|
|
|
abstract class DOMException extends \Exception {}
|