Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
BadGatewayException
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
<?php
/**
 * Project airtable-sdk-php
 * File: BadGatewayException.php
 * Created by: tpojka
 * On: 25/03/2020.
 */
namespace Beachcasts\Airtable\Exception;
class BadGatewayException extends AirtableException
{
    /**
     * @var int
     */
    protected $code = 502;
    /**
     * @var string
     */
    protected $message = 'Airtable\'s servers are restarting or an unexpected outage is in progress. You should generally not receive this error, and requests are safe to retry.';
}