for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ddeboer\Imap\Exception;
class MailboxDoesNotExistException extends Exception
{
public function __construct($mailbox)
parent::__construct('Mailbox ' . $mailbox. ' does not exist');
}