File "UnsupportedFunctionException.php"

Full Path: /home/humancap/cl.humancap.com.my/vendor/jfcherng/php-diff/src/Exception/UnsupportedFunctionException.php
File size: 328 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

declare(strict_types=1);

namespace Jfcherng\Diff\Exception;

final class UnsupportedFunctionException extends \Exception
{
    public function __construct(string $funcName = '', int $code = 0, \Throwable $previous = null)
    {
        parent::__construct("Unsupported function: {$funcName}", $code, $previous);
    }
}