Arsse/lib/ExceptionFatal.php

14 lines
346 B
PHP
Raw Normal View History

<?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1);
2017-03-28 00:12:12 -04:00
namespace JKingWeb\Arsse;
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
}