for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ddeboer\Imap\Exception;
class AuthenticationFailedException extends Exception
{
public function __construct($user, $error = null)
parent::__construct(
sprintf(
'Authentication failed for user %s with error %s',
$user,
$error
)
);
}