JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "MethodNotFoundException.php"

Full Path: /var/www/laravel_filter/vendor/luigel/laravel-paymongo/src/Exceptions/MethodNotFoundException.php
File size: 326 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Luigel\Paymongo\Exceptions;

use Exception;
use Throwable;

class MethodNotFoundException extends Exception
{
    public function __construct(
        $message = 'Method not found',
        $code = 0,
        Throwable $previous = null
    ) {
        parent::__construct($message, $code, $previous);
    }
}