for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Audiens\AppnexusClient\exceptions;
class AuthException extends \Exception
{
const DEFAULT_MESSAGE = "Something wrong with the autentication: ";
/**
* @param string $reason
*
* @return self
*/
public static function authFailed($reason)
return new self(self::DEFAULT_MESSAGE.$reason, 0, null);
}