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

File "PaymentErrorException.php"

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

<?php

namespace Luigel\Paymongo\Exceptions;

use Exception;
use Throwable;

class PaymentErrorException extends Exception
{
    public function __construct(
        $message = 'There is an error during payment',
        $code = 402,
        Throwable $previous = null
    ) {
        parent::__construct($message, $code, $previous);
    }
}