src/Ex/RuntimeError.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

declare(strict_types=1);

namespace Smuuf\Primi\Ex;

class RuntimeError extends ErrorException {

    public function __construct(string $msg) {
        $this->message = $msg;
    }

}