peakphp/framework

View on GitHub
src/Config/Exception/LoaderException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Peak\Config\Exception;

use Peak\Blueprint\Config\ConfigException;

class LoaderException extends \Exception implements ConfigException
{
    /**
     * LoaderException constructor.
     *
     * @param string $msg
     */
    public function __construct(string $msg)
    {
        parent::__construct($msg);
    }
}