mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-02 03:55:55 +00:00
7 lines
144 B
Python
7 lines
144 B
Python
from __future__ import annotations
|
|
|
|
|
|
class AccountEmailMismatchError(Exception):
|
|
def __str__(self):
|
|
return 'Account email mismatch'
|