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

10 lines
232 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);
}
2017-08-29 10:50:31 -04:00
}