1
0
mirror of https://github.com/Chouchen/ShikiryuRSS.git synced 2026-05-30 01:49:05 +02:00

🚧 Continues tests, parser and starts builder

For #4
This commit is contained in:
2023-04-07 17:57:35 +02:00
parent fec8c122e3
commit 63d0b03b50
18 changed files with 494 additions and 234 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
namespace Shikiryu\SRSS\Exception;
use Exception;
class SRSSException extends Exception
{
public function __construct($msg)
{
parent :: __construct($msg);
}
public function getError()
{
return 'Une exception a été générée : <strong>Message : ' . $this->getMessage() . '</strong> à la ligne : ' . $this->getLine();
}
}