for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ddlzz\AmoAPI\Exception;
/**
* Class FailedAuthException.
*
* @author ddlzz
*/
class FailedAuthException extends AmoException
{
* ErrorCodeException constructor.
* @param string $message
* @param string $response
public function __construct($message = '', $response = '')
parent::__construct($message);
$this->message .= '. Server response: '.$response;
}