2016-10-28 08:27:35 -04:00
|
|
|
<?php
|
2017-11-16 20:23:18 -05:00
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
2016-10-28 08:27:35 -04:00
|
|
|
declare(strict_types=1);
|
2017-03-28 00:12:12 -04:00
|
|
|
namespace JKingWeb\Arsse;
|
2016-10-28 08:27:35 -04:00
|
|
|
|
2017-02-11 14:56:02 -05:00
|
|
|
class ExceptionFatal extends AbstractException {
|
2017-02-16 15:29:42 -05:00
|
|
|
public function __construct($msg = "", $code = 0, $e = null) {
|
|
|
|
\Exception::__construct($msg, $code, $e);
|
|
|
|
}
|
2017-08-29 10:50:31 -04:00
|
|
|
}
|