• File: MissingParameter.php
  • Full Path: /home/masbinta/public_html/core/vendor/facade/flare-client-php/src/Http/Exceptions/MissingParameter.php
  • File size: 255 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace Facade\FlareClient\Http\Exceptions;

use Exception;

class MissingParameter extends Exception
{
    public static function create(string $parameterName)
    {
        return new static("`$parameterName` is a required parameter");
    }
}