mirror of
https://github.com/Chouchen/ShikiryuRSS.git
synced 2024-10-31 14:38:51 +01:00
12 lines
246 B
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()));
|
||
|
}
|
||
|
|
||
|
}
|