Skip to content
Snippets Groups Projects
Unverified Commit aba9ca7d authored by Christoph Wurst's avatar Christoph Wurst Committed by GitHub
Browse files

Merge pull request #2978 from nextcloud/fix/uid-validity-exception-namespace

Fix the namespace of UidValidityChangedException
parents c37d8968 f4dd491c
No related branches found
No related tags found
No related merge requests found
......@@ -23,9 +23,7 @@ declare(strict_types=1);
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
namespace OCA\mail\lib\Exception;
use OCA\Mail\Exception\ServiceException;
namespace OCA\Mail\Exception;
class UidValidityChangedException extends ServiceException {
}
......@@ -29,8 +29,8 @@ use Horde_Imap_Client_Exception;
use Horde_Imap_Client_Exception_Sync;
use Horde_Imap_Client_Ids;
use Horde_Imap_Client_Mailbox;
use OCA\Mail\Exception\UidValidityChangedException;
use OCA\Mail\IMAP\MessageMapper;
use OCA\mail\lib\Exception\UidValidityChangedException;
class Synchronizer {
......
......@@ -37,11 +37,11 @@ use OCA\Mail\Exception\IncompleteSyncException;
use OCA\Mail\Exception\MailboxLockedException;
use OCA\Mail\Exception\MailboxNotCachedException;
use OCA\Mail\Exception\ServiceException;
use OCA\Mail\Exception\UidValidityChangedException;
use OCA\Mail\IMAP\IMAPClientFactory;
use OCA\Mail\IMAP\MessageMapper as ImapMessageMapper;
use OCA\Mail\IMAP\Sync\Request;
use OCA\Mail\IMAP\Sync\Synchronizer;
use OCA\mail\lib\Exception\UidValidityChangedException;
use OCA\Mail\Model\IMAPMessage;
use OCA\Mail\Support\PerformanceLogger;
use OCP\EventDispatcher\IEventDispatcher;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment