?? GreyFile — Mystic File Browser

Current path: home/webdevt/prestashop17/vendor/prestashop/circuit-breaker/src/Exception/



?? Go up: /home/webdevt/prestashop17/vendor/prestashop/circuit-breaker/src

?? Viewing: UnsupportedMethodException.php

<?php

namespace PrestaShop\CircuitBreaker\Exception;

/**
 * Used when trying to use an unsupported HTTP method
 */
class UnsupportedMethodException extends CircuitBreakerException
{
    /**
     * @param string $methodName
     *
     * @return UnsupportedMethodException
     */
    public static function unsupportedMethod($methodName)
    {
        return new static(sprintf('Unsupported method: "%s"', $methodName));
    }
}


??

??