1
0
mirror of https://github.com/Chouchen/ShikiryuRSS.git synced 2024-05-16 05:11:31 +02:00
ShikiryuRSS/src/Exception/DOMBuilderException.php

12 lines
246 B
PHP

<?php
namespace Shikiryu\SRSS\Exception;
class DOMBuilderException extends SRSSException
{
public function __construct(\DOMException $e)
{
parent::__construct(sprintf('Error while building DOM (%s)', $e->getMessage()));
}
}