. * * ========================= * * This file contains RuntimeException class * * @category Common * @package DmarcSrg * @author Aleksey Andreev (liuch) * @license https://www.gnu.org/licenses/gpl-3.0.html GNU/GPLv3 */ namespace Liuch\DmarcSrg\Exception; /** * Base RuntimeException */ class RuntimeException extends \RuntimeException { public function __construct(string $message = '', int $code = -1, \Throwable $previous = null) { parent::__construct($message, $code, $previous); } }