for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Votifier PHP Client
*
* @package VotifierClient
* @author Manuele Vaccari <[email protected]>
* @copyright Copyright (c) 2017-2020 Manuele Vaccari <[email protected]>
* @license https://github.com/D3strukt0r/votifier-client-php/blob/master/LICENSE.txt GNU General Public License v3.0
* @link https://github.com/D3strukt0r/votifier-client-php
*/
namespace D3strukt0r\VotifierClient\Exception;
use Exception;
* Class NuVotifierServerErrorException
* Votifier server error: {0}: {1}.
class NuVotifierServerErrorException extends Exception
{
public function __construct(string $message, int $code = 0, Exception $previous = null)
parent::__construct($message, $code, $previous);
}