mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 13:12:41 +00:00
9 lines
214 B
PHP
9 lines
214 B
PHP
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
namespace JKingWeb\NewsSync;
|
||
|
|
||
|
class ExceptionFatal extends Exception {
|
||
|
public function __construct($msg = "", $code = 0, $e = null) {
|
||
|
\Exception::__construct($msg, $code, $e);
|
||
|
}
|
||
|
}
|