JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "BadRequestException.php"
Full Path: /var/www/laravel_filter/Modules/PaymentGateway/vendor/luigel/laravel-paymongo/src/Exceptions/BadRequestException.php
File size: 375 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Luigel\Paymongo\Exceptions;
use Exception;
use Throwable;
class BadRequestException extends Exception
{
public function __construct(
$message = 'The request was not understood, often caused by missing parameters.',
$code = 400,
Throwable $previous = null
) {
parent::__construct($message, $code, $previous);
}
}