Implement option to replace existing alias when renaming an account; use database transactions when editing accounts

This commit is contained in:
Lexi / Zoe 2021-08-20 22:48:15 +02:00
parent 6ace072841
commit 36b8cfe8b1
Signed by: binaryDiv
GPG key ID: F8D4956E224DA232
7 changed files with 163 additions and 15 deletions

View file

@ -0,0 +1,8 @@
<?php
declare(strict_types=1);
namespace MailAccountAdmin\Exceptions;
class AliasNotFoundException extends AppException
{
}