1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2025-01-20 18:10:34 +00:00
Arsse/lib/ExceptionFatal.php

9 lines
231 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
2017-03-27 23:12:12 -05:00
namespace JKingWeb\Arsse;
class ExceptionFatal extends AbstractException {
2017-02-16 14:29:42 -06:00
public function __construct($msg = "", $code = 0, $e = null) {
\Exception::__construct($msg, $code, $e);
}
}