2016-10-28 08:27:35 -04:00
|
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace JKingWeb\NewsSync;
|
|
|
|
|
2017-02-11 14:56:02 -05:00
|
|
|
class ExceptionFatal extends AbstractException {
|
2016-10-28 08:27:35 -04:00
|
|
|
public function __construct($msg = "", $code = 0, $e = null) {
|
|
|
|
\Exception::__construct($msg, $code, $e);
|
|
|
|
}
|
|
|
|
}
|