for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yansongda\LaravelApi\Exceptions;
class AccessTokenExpiredException extends Exception
{
/**
* Raw data.
*
* @var string|array
*/
public $raw;
* Bootstrap.
* @author yansongda <[email protected]>
* @param string $message
* @param string|array $raw
* @param string|int $code
public function __construct($message, $raw = '', $code = 3)
$this->raw = $raw;
parent::__construct($message, intval($code));
}