Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
ForbiddenException
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
<?php
/**
 * Project airtable-sdk-php
 * File: BadRequestException.php
 * Created by: tpojka
 * On: 25/03/2020.
 */
namespace Beachcasts\Airtable\Exception;
class ForbiddenException extends AirtableException
{
    /**
     * @var int
     */
    protected $code = 403;
    /**
     * @var string
     */
    protected $message = 'Accessing a protected resource with API credentials that don\'t have access to that resource.';
}