for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Borfast\Socializr\Exceptions;
use Exception;
class LinkedinForbiddenException extends AuthorizationException
{
/**
* @param Exception $parent
*/
public function __construct(Exception $parent)
parent::__construct($parent->getMessage(), $parent->getCode(), $parent);
}