InterNACHI/modular

View on GitHub
src/Exceptions/CannotFindModuleForPathException.php

Summary

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

namespace InterNACHI\Modular\Exceptions;

use Throwable;

class CannotFindModuleForPathException extends Exception
{
    public function __construct(string $path, Throwable $previous = null)
    {
        parent::__construct("Unable to determine module for '{$path}'", 0, $previous);
    }
}