for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Amelia\Monzo\Exceptions;
class RateLimitException extends MonzoException
{
/**
* Our request limit.
*
* @var int
*/
public $limit;
* The number of requests remaining.
public $remaining;
* The number of seconds to wait before retrying.
public $retryAfter;
* Status code for this error.
protected static $status = 404;
* Status message for this error.
* @var string
protected static $statusMessage = 'Rate limit for the monzo API reached, backing off. See https://monzo.com/docs';
}