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

namespace Facade\FlareClient\Http\Exceptions;

use Facade\FlareClient\Http\Response;

class InvalidData extends BadResponseCode
{
    public static function getMessageForResponse(Response $response)
    {
        return 'Invalid data found';
    }
}