Exceptions\Http\Client\UnauthorizedException::__construct PHP Метод

__construct() публичный Метод

UnauthorizedException constructor.
public __construct ( string $message = self::HTTP_MESSAGE, integer $code = self::HTTP_CODE, null $previous = null )
$message string Error message (HTTP) that defines this exception
$code integer Error code (HTTP) that defines this exception
$previous null Inner/Previous exception that triggered this exception
    public function __construct($message = self::HTTP_MESSAGE, $code = self::HTTP_CODE, $previous = null)
    {
        parent::__construct($message, $code, $previous);
    }